Kaynağa Gözat

create new component

Shun Miyazawa 4 yıl önce
ebeveyn
işleme
cf45686bb8

+ 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]);