summaryrefslogtreecommitdiff
path: root/frontend/src/index.js
diff options
context:
space:
mode:
authorVictor Chabbert <chabbertvi@eisti.eu>2017-01-22 17:19:33 +0100
committerVictor Chabbert <chabbertvi@eisti.eu>2017-01-22 17:19:37 +0100
commit936f7e32781f2d90fa3e3460758005d807fa6120 (patch)
tree1f07ac11edfad755bc30acff9ce605b9c8ff8967 /frontend/src/index.js
parentFix areAllPlayersReady() to understand WAIT action (diff)
downloadseven-wonders-936f7e32781f2d90fa3e3460758005d807fa6120.tar.gz
seven-wonders-936f7e32781f2d90fa3e3460758005d807fa6120.tar.bz2
seven-wonders-936f7e32781f2d90fa3e3460758005d807fa6120.zip
Move saga and router routes in a single file
Diffstat (limited to 'frontend/src/index.js')
-rw-r--r--frontend/src/index.js17
1 files changed, 3 insertions, 14 deletions
diff --git a/frontend/src/index.js b/frontend/src/index.js
index d5190d53..1959b14a 100644
--- a/frontend/src/index.js
+++ b/frontend/src/index.js
@@ -2,30 +2,19 @@ import 'babel-polyfill'
import React from 'react'
import ReactDOM from 'react-dom'
-import { Router, Route, IndexRoute } from 'react-router'
+import { Router } from 'react-router'
import { Provider } from 'react-redux'
import configureStore from './store'
+import { routes } from './routes'
const initialState = {}
const { store, history } = configureStore(initialState)
import './global-styles.css'
-import HomePage from './containers/home'
-import { LobbyLayout } from './layouts'
-import GameBrowser from './containers/gameBrowser'
-import Error404 from './components/errors/Error404'
ReactDOM.render(
<Provider store={store}>
- <Router history={history}>
- <div className="app">
- <Route path="/" component={LobbyLayout}>
- <IndexRoute component={HomePage} />
- <Route path="/games" component={GameBrowser} />
- </Route>
- <Route path="*" component={Error404} />
- </div>
- </Router>
+ <Router history={history} routes={routes} />
</Provider>,
document.getElementById('root')
);
bgstack15