2018-06-01 14:25:59 +00:00
|
|
|
import React from 'react';
|
|
|
|
import { render } from 'react-dom';
|
|
|
|
import { Provider } from 'react-redux';
|
2018-06-01 16:45:11 +00:00
|
|
|
import store from './store/configureStore';
|
2018-06-01 14:25:59 +00:00
|
|
|
import App from './dapp';
|
2018-06-01 16:45:11 +00:00
|
|
|
import init from './store/init'
|
2018-06-01 14:25:59 +00:00
|
|
|
import './dapp.css';
|
|
|
|
|
2018-06-01 16:45:11 +00:00
|
|
|
init();
|
2018-06-01 14:25:59 +00:00
|
|
|
|
|
|
|
render(
|
|
|
|
<Provider store={store}>
|
|
|
|
<App />
|
|
|
|
</Provider>,
|
|
|
|
document.getElementById('app')
|
|
|
|
);
|