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

+ 15 - 1
src/client/js/components/Admin/Notification/UserNotificationList.jsx

@@ -11,8 +11,22 @@ import AdminNotificationContainer from '../../../services/AdminNotificationConta
 class UserNotificationList extends React.Component {
 
   render() {
+    const { t } = this.props;
+
     return (
-      <p>hoge</p>
+      <tr className="admin-notif-row">
+        <td>
+          pattern
+        </td>
+        <td>
+          channel
+        </td>
+        <td>
+          <form className="admin-remove-updatepost">
+            <button type="submit" className="btn btn-default">{t('Delete')}</button>
+          </form>
+        </td>
+      </tr>
     );
   }