mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-04-24 03:00:09 -04:00
19 lines
387 B
TypeScript
19 lines
387 B
TypeScript
import React, { lazy } from 'react';
|
|
|
|
import { PlayerStart } from '#components/Player/PlayerStart';
|
|
|
|
export const getStaticProps = async () => ({
|
|
props: {
|
|
hideTopMenu: true,
|
|
},
|
|
});
|
|
|
|
const PageContainer = lazy(() => import('components/Container'));
|
|
|
|
const SetupComplete: React.FC = () => (
|
|
<PageContainer>
|
|
<PlayerStart />
|
|
</PageContainer>
|
|
);
|
|
export default SetupComplete;
|