mirror of
https://github.com/MetaFam/TheGame.git
synced 2026-02-10 05:55:23 -05:00
17 lines
407 B
TypeScript
17 lines
407 B
TypeScript
import { MetaButton, MetaHeading } from '@metafam/ds';
|
|
import NextLink from 'next/link';
|
|
import React from 'react';
|
|
|
|
import { FlexContainer } from './Container';
|
|
|
|
export const SetupDone: React.FC = () => {
|
|
return (
|
|
<FlexContainer flex={1}>
|
|
<MetaHeading mb={10}>Game on!</MetaHeading>
|
|
<NextLink href="/">
|
|
<MetaButton>Play</MetaButton>
|
|
</NextLink>
|
|
</FlexContainer>
|
|
);
|
|
};
|