diff options
author | Joffrey BION <joffrey.bion@gmail.com> | 2017-08-08 00:27:14 +0200 |
---|---|---|
committer | Joffrey BION <joffrey.bion@gmail.com> | 2017-08-08 00:27:14 +0200 |
commit | 135f5a58695c92bfde605ea5157987805d3203f2 (patch) | |
tree | 06de26fee8abe04611ed47be7b401e4283114bef /frontend/src | |
parent | Change username input to use blueprint (diff) | |
download | seven-wonders-135f5a58695c92bfde605ea5157987805d3203f2.tar.gz seven-wonders-135f5a58695c92bfde605ea5157987805d3203f2.tar.bz2 seven-wonders-135f5a58695c92bfde605ea5157987805d3203f2.zip |
Remove obsolete routes.js
Diffstat (limited to 'frontend/src')
-rw-r--r-- | frontend/src/routes.js | 32 |
1 files changed, 0 insertions, 32 deletions
diff --git a/frontend/src/routes.js b/frontend/src/routes.js deleted file mode 100644 index 60efed8d..00000000 --- a/frontend/src/routes.js +++ /dev/null @@ -1,32 +0,0 @@ -// @flow -import React from 'react'; - -import Application from './scenes'; -import Error404 from './components/errors/Error404'; - -import { Route, Switch } from 'react-router'; - -const Routes = () => ( - <Switch> - <Route path="/" component={Application} /> - <Route path="*" component={Error404} /> - </Switch> -); - -export default Routes; -// export const routes = [ -// { -// path: '/', -// component: HomeLayout, -// indexRoute: { component: HomePage }, -// }, -// { -// path: '/', -// component: LobbyLayout, -// childRoutes: [{ path: '/games', component: GameBrowser }, { path: '/lobby/*', component: Lobby }], -// }, -// { -// path: '*', -// component: Error404, -// }, -// ]; |