b7df80a96c
* reselect added * Added Reselect Sorting * Refactor App * added svgs * Refactor * Fixed Issues * re: #789, update sorting styling, create sorting actions and reducers, add sort by sketch name * re #789, change names of svg icons * re: #789, use orderBy instead of sortBy, fix styling jumps
30 lines
735 B
JavaScript
30 lines
735 B
JavaScript
import React from 'react';
|
|
import { render } from 'react-dom';
|
|
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);
|
|
|
|
const App = () => (
|
|
<Provider store={store}>
|
|
<Router history={history} routes={routes(store)} />
|
|
</Provider>
|
|
);
|
|
|
|
const HotApp = hot(module)(App);
|
|
|
|
render(
|
|
<HotApp />,
|
|
document.getElementById('root')
|
|
);
|