diff options
author | lonkaars <l.leblansch@gmail.com> | 2021-01-06 13:53:56 +0100 |
---|---|---|
committer | lonkaars <l.leblansch@gmail.com> | 2021-01-06 13:53:56 +0100 |
commit | 90d55c83cb4a6e3cf76622b0b8a2a9aa13fd2ba0 (patch) | |
tree | 6185801f66d7f27be394f2ba88b36670cf437941 /src/pages/game.tsx | |
parent | 214c263470d26256ce53ad0dc17df6acd42a5442 (diff) |
spel pagina
Diffstat (limited to 'src/pages/game.tsx')
-rw-r--r-- | src/pages/game.tsx | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/pages/game.tsx b/src/pages/game.tsx new file mode 100644 index 0000000..b248631 --- /dev/null +++ b/src/pages/game.tsx @@ -0,0 +1,16 @@ +import { NavBar } from '../components/navbar'; +import { CenteredPage, PageTitle } from '../components/page'; +import { VoerBord } from '../components/voerBord'; + +export default function GamePage() { + return ( + <div> + <NavBar/> + <CenteredPage width={900}> + <PageTitle>Niew spel starten</PageTitle> + <VoerBord width={7} height={6}/> + </CenteredPage> + </div> + ); +} + |