mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-11 20:27:07 +03:00
c924091e8c
* Rename redux-slider-monitor to redux-devtools-slider-monitor * Fix
24 lines
534 B
JavaScript
24 lines
534 B
JavaScript
import 'todomvc-app-css/index.css';
|
|
import React from 'react';
|
|
import ReactDOM from 'react-dom';
|
|
import { AppContainer } from 'react-hot-loader';
|
|
import configureStore from './store/configureStore';
|
|
import Root from './containers/Root';
|
|
|
|
const store = configureStore();
|
|
|
|
const rootEl = document.getElementById('root');
|
|
const render = () => {
|
|
ReactDOM.render(
|
|
<AppContainer>
|
|
<Root store={store} />
|
|
</AppContainer>,
|
|
rootEl
|
|
);
|
|
};
|
|
|
|
render(Root);
|
|
if (module.hot) {
|
|
module.hot.accept('./containers/Root', render);
|
|
}
|