2016-11-08 23:54:54 +00:00
|
|
|
import React from 'react';
|
|
|
|
import { render } from 'react-dom';
|
2018-05-03 00:34:03 +00:00
|
|
|
import { hot } from 'react-hot-loader';
|
2016-11-08 23:54:54 +00:00
|
|
|
import { Provider } from 'react-redux';
|
|
|
|
import { Router, browserHistory } from 'react-router';
|
|
|
|
import configureStore from './store';
|
|
|
|
import routes from './routes';
|
|
|
|
|
|
|
|
require('./styles/main.scss');
|
|
|
|
|
|
|
|
const history = browserHistory;
|
|
|
|
const initialState = window.__INITIAL_STATE__;
|
|
|
|
const store = configureStore(initialState);
|
|
|
|
|
2018-05-03 00:34:03 +00:00
|
|
|
const App = () => (
|
2016-11-08 23:54:54 +00:00
|
|
|
<Provider store={store}>
|
|
|
|
<Router history={history} routes={routes(store)} />
|
2018-05-03 00:34:03 +00:00
|
|
|
</Provider>
|
|
|
|
);
|
|
|
|
|
|
|
|
const HotApp = hot(module)(App);
|
|
|
|
|
|
|
|
render(
|
|
|
|
<HotApp />,
|
2017-02-22 19:29:35 +00:00
|
|
|
document.getElementById('root')
|
2016-11-08 23:54:54 +00:00
|
|
|
);
|