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/routes.tsx | |
parent | 214c263470d26256ce53ad0dc17df6acd42a5442 (diff) |
spel pagina
Diffstat (limited to 'src/routes.tsx')
-rw-r--r-- | src/routes.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/routes.tsx b/src/routes.tsx index b9b39da..5310baf 100644 --- a/src/routes.tsx +++ b/src/routes.tsx @@ -4,11 +4,13 @@ import './global.css'; import HomePage from './pages/home'; import SettingsPage from './pages/settings'; +import GamePage from './pages/game'; export default function Router() { return <Switch> <Route exact path='/' component={HomePage}/> <Route exact path='/settings' component={SettingsPage}/> + <Route exact path='/game' component={GamePage}/> </Switch>; } |