mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-13 05:06:50 +03:00
6782f4ae41
* Move extension * prettier
17 lines
386 B
JavaScript
17 lines
386 B
JavaScript
import 'babel-polyfill';
|
|
import React from 'react';
|
|
import { render } from 'react-dom';
|
|
import { Provider } from 'react-redux';
|
|
import App from './containers/App';
|
|
import configureStore from './store/configureStore';
|
|
import 'todomvc-app-css/index.css';
|
|
|
|
const store = configureStore();
|
|
|
|
render(
|
|
<Provider store={store}>
|
|
<App />
|
|
</Provider>,
|
|
document.getElementById('root')
|
|
);
|