diff options
Diffstat (limited to 'src/routes.tsx')
-rw-r--r-- | src/routes.tsx | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/routes.tsx b/src/routes.tsx index 5310baf..baff382 100644 --- a/src/routes.tsx +++ b/src/routes.tsx @@ -5,12 +5,16 @@ import './global.css'; import HomePage from './pages/home'; import SettingsPage from './pages/settings'; import GamePage from './pages/game'; +import LoginPage from './pages/login'; +import RegisterPage from './pages/register'; export default function Router() { return <Switch> <Route exact path='/' component={HomePage}/> <Route exact path='/settings' component={SettingsPage}/> <Route exact path='/game' component={GamePage}/> + <Route exact path='/login' component={LoginPage}/> + <Route exact path='/register' component={RegisterPage}/> </Switch>; } |