-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.js
45 lines (40 loc) · 1.3 KB
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import React from 'react';
import { Provider } from 'react-redux';
import { render } from 'react-dom';
import { Route } from 'react-router';
import { ConnectedRouter } from 'react-router-redux';
import createHistory from 'history/createBrowserHistory';
import { AppContainer } from 'react-hot-loader';
import '../node_modules/bootstrap/dist/css/bootstrap.css';
import '../node_modules/font-awesome/css/font-awesome.css';
import '../css/app.scss';
import App from './components/app';
import Features from './components/features';
import configureStore from './store';
const history = createHistory();
const store = configureStore();
render(
<AppContainer>
<Provider store={store}>
<ConnectedRouter history={history}>
<div>
<Route exact path="/" component={App} />
<Route path="/features" component={Features} />
</div>
</ConnectedRouter>
</Provider>
</AppContainer>
, document.getElementById('container'));
if (module.hot) {
module.hot.accept('./components/app', () => {
render(
<AppContainer>
<Provider store={store}>
<ConnectedRouter history={history}>
<Route exact path="/" component={App} />
</ConnectedRouter>
</Provider>
</AppContainer>
, document.getElementById('container'));
});
}