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

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

@@ -0,0 +1,18 @@
+import React, { FC } from 'react';
+
+import AppContainer from '~/client/services/AppContainer';
+import { withUnstatedContainers } from '../UnstatedUtils';
+
+type Props = {
+  appContainer: AppContainer,
+};
+
+const InAppNotificationSetting: FC<Props> = (props: Props) => {
+  return (
+    <>
+      <p>InAppNotificationSetting</p>
+    </>
+  );
+};
+
+export const InAppNotificationSettingWrapper = withUnstatedContainers(InAppNotificationSetting, [AppContainer]);