aboutsummaryrefslogtreecommitdiff
path: root/src/routes.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'src/routes.tsx')
-rw-r--r--src/routes.tsx2
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>;
}