aboutsummaryrefslogtreecommitdiff
path: root/src/pages
diff options
context:
space:
mode:
Diffstat (limited to 'src/pages')
-rw-r--r--src/pages/game.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/pages/game.tsx b/src/pages/game.tsx
index d02410e..728fcdc 100644
--- a/src/pages/game.tsx
+++ b/src/pages/game.tsx
@@ -2,6 +2,7 @@ import { NavBar } from '../components/navbar';
import { CenteredPage } from '../components/page';
import { VoerBord } from '../components/voerBord';
import { DialogBox } from '../components/dialogBox';
+import { CurrentGameSettings } from '../components/gameSettings';
export default function GamePage() {
return (
@@ -10,7 +11,7 @@ export default function GamePage() {
<CenteredPage width={900}>
<VoerBord width={7} height={6}/>
<DialogBox title="Nieuw spel">
- <p>Hier is meer informatie over dit dialoogvenster</p>
+ <CurrentGameSettings/>
</DialogBox>
</CenteredPage>
</div>