itizawa пре 6 година
родитељ
комит
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 {
 
   render() {
+    const { t } = this.props;
     return (
-      <p>hoge</p>
+      <React.Fragment>
+        <h2 className="border-bottom mb-5">{t('notification_setting.notification_list')}</h2>
+      </React.Fragment>
     );
   }