aboutsummaryrefslogtreecommitdiff
path: root/src/routes.tsx
diff options
context:
space:
mode:
authorlonkaars <l.leblansch@gmail.com>2021-01-15 09:05:51 +0100
committerlonkaars <l.leblansch@gmail.com>2021-01-15 09:05:51 +0100
commit9c355c7de88bcbfb62558d3665d9a3a2c8a97b6f (patch)
tree91ce60c15420b6352c74c5813a757ce8d87a4935 /src/routes.tsx
parenta6c6129c2bf59d55238464dad3b2e909699d30b8 (diff)
login/register pages
Diffstat (limited to 'src/routes.tsx')
-rw-r--r--src/routes.tsx4
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>;
}