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

30 lines
734 B
React
Raw Normal View History

import React from 'react';
import { render } from 'react-dom';
2018-05-03 02:34:03 +02:00
import { hot } from 'react-hot-loader';
import { Provider } from 'react-redux';
import { Router, browserHistory } from 'react-router';
import configureStore from './store';
import routes from './routes';
require('./styles/main.scss');
// Load the p5 png logo, so that webpack will use it
require('./images/p5js-square-logo.png');
const history = browserHistory;
const initialState = window.__INITIAL_STATE__;
const store = configureStore(initialState);
2018-05-03 02:34:03 +02:00
const App = () => (
<Provider store={store}>
<Router history={history} routes={routes(store)} />
2018-05-03 02:34:03 +02:00
</Provider>
);
const HotApp = hot(module)(App);
render(
<HotApp />,
document.getElementById('root')
);