mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-02-18 12:30:50 +03:00
11 lines
319 B
TypeScript
11 lines
319 B
TypeScript
|
import 'todomvc-app-css/index.css';
|
||
|
import React from 'react';
|
||
|
import ReactDOM from 'react-dom';
|
||
|
import configureStore from './store/configureStore';
|
||
|
import Root from './containers/Root';
|
||
|
|
||
|
const store = configureStore();
|
||
|
|
||
|
const rootEl = document.getElementById('root');
|
||
|
ReactDOM.render(<Root store={store} />, rootEl);
|