mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-02-08 07:30:45 +03:00
12 lines
259 B
JavaScript
12 lines
259 B
JavaScript
|
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')
|
||
|
);
|