You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
424 B
19 lines
424 B
7 years ago
|
import React from 'react';
|
||
|
import { render } from 'react-dom';
|
||
|
import createHistory from 'history/createBrowserHistory';
|
||
|
import createAppStore from 'Store/createAppStore';
|
||
|
import App from './App/App';
|
||
|
import 'Styles/globals.css';
|
||
|
import './index.css';
|
||
|
|
||
|
const history = createHistory();
|
||
|
const store = createAppStore(history);
|
||
|
|
||
|
render(
|
||
|
<App
|
||
|
store={store}
|
||
|
history={history}
|
||
|
/>,
|
||
|
document.getElementById('root')
|
||
|
);
|