2018-08-01 10:19:11 +01:00
|
|
|
import React from 'react';
|
|
|
|
import ReactDOM from 'react-dom';
|
2018-08-01 14:09:58 -04:00
|
|
|
import {Provider} from 'react-redux';
|
2018-08-01 14:13:51 +01:00
|
|
|
|
2018-08-01 16:34:59 +01:00
|
|
|
import "tabler-react/dist/Tabler.css";
|
2018-08-03 15:08:13 -04:00
|
|
|
import "./general.css";
|
2018-08-01 16:34:59 +01:00
|
|
|
|
2018-08-01 14:13:51 +01:00
|
|
|
import AppContainer from './containers/AppContainer';
|
2018-08-01 10:19:11 +01:00
|
|
|
import registerServiceWorker from './registerServiceWorker';
|
2018-08-01 14:13:51 +01:00
|
|
|
import configureStore from './store/configureStore';
|
|
|
|
|
|
|
|
const store = configureStore();
|
2018-08-01 10:19:11 +01:00
|
|
|
|
2018-08-01 14:13:51 +01:00
|
|
|
ReactDOM.render(
|
|
|
|
<Provider store={store}>
|
|
|
|
<AppContainer />
|
|
|
|
</Provider>,
|
|
|
|
document.getElementById('root')
|
|
|
|
);
|
2018-08-01 10:19:11 +01:00
|
|
|
registerServiceWorker();
|