Shun Miyazawa 4 лет назад
Родитель
Сommit
0d3296a1f9
1 измененных файлов с 18 добавлено и 0 удалено
  1. 18 0
      packages/app/src/components/Me/InAppNotificationSettings.tsx

+ 18 - 0
packages/app/src/components/Me/InAppNotificationSettings.tsx

@@ -11,9 +11,27 @@ type Props = {
 const InAppNotificationSetting: FC<Props> = (props: Props) => {
   const { t } = useTranslation();
 
+  const updateSettingsHandler = () => {
+    // TODO: 80102
+    return;
+  };
+
   return (
     <>
       <h2 className="border-bottom my-4">{t('in_app_notification_settings.in_app_notification_settings')}</h2>
+
+
+      <div className="row my-3">
+        <div className="offset-4 col-5">
+          <button
+            type="button"
+            className="btn btn-primary"
+            onClick={updateSettingsHandler}
+          >
+            {t('Update')}
+          </button>
+        </div>
+      </div>
     </>
   );
 };