mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-13 13:16:52 +03:00
13 lines
295 B
JavaScript
13 lines
295 B
JavaScript
import 'todomvc-app-css/index.css';
|
|
import React from 'react';
|
|
import { render } from 'react-dom';
|
|
import configureStore from './store/configureStore';
|
|
import Root from './containers/Root';
|
|
|
|
const store = configureStore();
|
|
|
|
render(
|
|
<Root store={store} />,
|
|
document.getElementById('root')
|
|
);
|