2017-06-24 01:26:08 +00:00
|
|
|
import React from 'react';
|
|
|
|
import { render } from 'react-dom';
|
2017-07-05 23:28:54 +00:00
|
|
|
import { syncHistoryWithStore } from 'react-router-redux';
|
|
|
|
|
2017-06-24 01:26:08 +00:00
|
|
|
import { Root } from 'components';
|
|
|
|
import { Routing, history } from './routing';
|
2017-07-05 23:28:54 +00:00
|
|
|
import { store } from './store';
|
2017-04-12 05:04:27 +00:00
|
|
|
// application styles
|
2017-06-24 01:26:08 +00:00
|
|
|
import 'assets/styles/etherwallet-master.less';
|
2017-04-12 05:04:27 +00:00
|
|
|
|
2017-06-24 01:26:08 +00:00
|
|
|
const renderRoot = Root => {
|
|
|
|
let syncedHistory = syncHistoryWithStore(history, store);
|
|
|
|
render(
|
|
|
|
<Root
|
|
|
|
key={Math.random()}
|
|
|
|
routes={Routing}
|
|
|
|
history={syncedHistory}
|
|
|
|
store={store}
|
|
|
|
/>,
|
|
|
|
document.getElementById('app')
|
|
|
|
);
|
2017-04-12 05:04:27 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
renderRoot(Root);
|
|
|
|
|
|
|
|
if (module.hot) {
|
2017-07-03 18:23:44 +00:00
|
|
|
module.hot.accept('reducers/index', () =>
|
|
|
|
store.replaceReducer(require('reducers/index').default)
|
2017-07-02 17:55:58 +00:00
|
|
|
);
|
2017-04-12 05:04:27 +00:00
|
|
|
}
|