p5.js-web-editor/client/index.js

19 lines
542 B
JavaScript
Raw Normal View History

2016-05-05 21:48:26 +00:00
import React from 'react'
import { render } from 'react-dom'
import { Provider } from 'react-redux'
2016-05-18 17:37:59 +00:00
import { Router, browserHistory } from 'react-router'
2016-05-05 21:48:26 +00:00
import configureStore from '../shared/redux/store/configureStore'
2016-05-18 17:37:59 +00:00
import routes from '../shared/routes'
2016-05-05 21:48:26 +00:00
2016-05-11 02:22:32 +00:00
require('../styles/main.scss');
2016-05-10 18:18:36 +00:00
2016-05-18 17:37:59 +00:00
const history = browserHistory
2016-05-05 21:48:26 +00:00
const initialState = window.__INITIAL_STATE__
const store = configureStore(initialState)
2016-05-03 04:09:16 +00:00
render(
2016-05-05 21:48:26 +00:00
<Provider store={store}>
2016-05-18 17:37:59 +00:00
<Router history={history} routes={routes} />
2016-05-05 21:48:26 +00:00
</Provider>,
2016-05-03 04:09:16 +00:00
document.getElementById('root')
)