summaryrefslogtreecommitdiff
path: root/client/index.js
blob: b9d3a1afcf5b72613f67b04785f496b5cf15f564 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import React from 'react'
import ReactDOM from 'react-dom'
import { Provider } from 'react-redux'

import App from './app'

import { store, history } from './store'

ReactDOM.render(
  <Provider store={store}>
    <App history={history} />
  </Provider>, document.querySelector('#container')
)