itizawa 6 лет назад
Родитель
Сommit
441490f4b5
1 измененных файлов с 4 добавлено и 1 удалено
  1. 4 1
      src/client/js/components/Admin/Notification/GrobalNotification.jsx

+ 4 - 1
src/client/js/components/Admin/Notification/GrobalNotification.jsx

@@ -11,8 +11,11 @@ import AdminNotificationContainer from '../../../services/AdminNotificationConta
 class GrobalNotification extends React.Component {
 class GrobalNotification extends React.Component {
 
 
   render() {
   render() {
+    const { t } = this.props;
     return (
     return (
-      <p>hoge</p>
+      <React.Fragment>
+        <h2 className="border-bottom mb-5">{t('notification_setting.notification_list')}</h2>
+      </React.Fragment>
     );
     );
   }
   }