Explorar o código

create new component

Shun Miyazawa %!s(int64=4) %!d(string=hai) anos
pai
achega
cf45686bb8
Modificáronse 1 ficheiros con 18 adicións e 0 borrados
  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]);