2019-06-19 14:49:50 -04:00
|
|
|
import React from 'react'
|
|
|
|
import ReactDOM from 'react-dom'
|
|
|
|
// import './index.css'
|
|
|
|
import { Provider } from 'react-redux'
|
|
|
|
import store from './js/store/index'
|
|
|
|
import App from './js/components/App.jsx'
|
|
|
|
import * as serviceWorker from './serviceWorker'
|
2019-06-19 12:08:06 -04:00
|
|
|
|
2019-06-19 14:49:50 -04:00
|
|
|
ReactDOM.render(
|
|
|
|
<Provider store={store}>
|
|
|
|
<App />
|
|
|
|
</Provider>,
|
|
|
|
document.getElementById('root')
|
|
|
|
)
|
2019-06-19 12:08:06 -04:00
|
|
|
|
|
|
|
// If you want your app to work offline and load faster, you can change
|
|
|
|
// unregister() to register() below. Note this comes with some pitfalls.
|
|
|
|
// Learn more about service workers: https://bit.ly/CRA-PWA
|
2019-06-19 14:49:50 -04:00
|
|
|
serviceWorker.unregister();
|
2019-06-19 14:24:21 -04:00
|
|
|
|