mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-02-12 06:54:57 -05:00
* upgraded storybook dependencies * upgraded web dependencies * updated timezone selector * upgrade chakra in metamaps * upgraded react-dnd in metamaps * upgraded framer-motion * fixed types in metamaps * upgraded eslint * upgraded lerna, husky and graphql * upgraded node version * removed metamaps package * fixed all eslint issues * ran yarn format to prettier format all files * updated lint-staged & husky scripts * add executable perms to pre-push scripts * updated yarn.lock * fixed eslint and moved chakra icons to ds * fixed emotion errors * removed extra useContext * update yarn.lock * upgraded more packages * removed unnecessary .huskyrc.json * lint fix
23 lines
630 B
TypeScript
23 lines
630 B
TypeScript
import { SetupDone } from 'components/Setup/SetupDone';
|
|
import { SetupProfile } from 'components/Setup/SetupProfile';
|
|
import { SetupContextProvider } from 'contexts/SetupContext';
|
|
import { InferGetStaticPropsType } from 'next';
|
|
import React from 'react';
|
|
|
|
export const getStaticProps = async () => ({
|
|
props: {
|
|
hideAppDrawer: true,
|
|
},
|
|
});
|
|
|
|
export type DefaultSetupProps = InferGetStaticPropsType<typeof getStaticProps>;
|
|
|
|
const SetupComplete: React.FC<DefaultSetupProps> = () => (
|
|
<SetupContextProvider>
|
|
<SetupProfile>
|
|
<SetupDone />
|
|
</SetupProfile>
|
|
</SetupContextProvider>
|
|
);
|
|
export default SetupComplete;
|