Просмотр исходного кода

show in app notification list all

kaori 4 лет назад
Родитель
Сommit
f1de9c7b77

+ 15 - 0
packages/app/src/components/InAppNotification/AllInAppNotificationList.tsx

@@ -0,0 +1,15 @@
+import React, { FC } from 'react';
+
+type Props = {
+
+};
+
+const AllInAppNotificationList: FC<Props> = (props: Props) => {
+
+  return (
+    <>AllInAppNotificationList</>
+  );
+};
+
+
+export default AllInAppNotificationList;

+ 3 - 2
packages/app/src/server/views/me/in-app-notification.html

@@ -7,7 +7,8 @@
 {% block content_header_wrapper %}
 <header class="py-3">
   <div class="container-fluid">
-    <h1 class="title">{{ t('My Drafts') }}</h1>
+    <!-- TODO: apply i18n by #80104 -->
+    <h1 class="title">In App Notification List</h1>
   </div>
 </header>
 <div id="grw-fav-sticky-trigger" class="sticky-top"></div>
@@ -15,7 +16,7 @@
 
 <div id="main" class="main">
   <div id="content-main" class="content-main grw-container-convertible">
-    <div id="my-drafts"></div>
+    <div id="all-in-app-notification-list"></div>
   </div>
 </div>
 {% endblock %}