/ src / index.jsx
index.jsx
 1  import React from 'react'
 2  import ReactDOM from 'react-dom'
 3  import { Provider } from 'react-redux'
 4  import { ConnectedRouter } from 'connected-react-router'
 5  import App from './modules/App'
 6  import configureStore, { history } from './common/redux/store'
 7  
 8  const store = configureStore()
 9  
10  ReactDOM.render(
11    <Provider store={store}>
12      <ConnectedRouter history={history}>
13        <App />
14      </ConnectedRouter>
15    </Provider>,
16    document.getElementById('root'),
17  )