Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save lesniakania/b96e8f20bfe55f98eaa7 to your computer and use it in GitHub Desktop.
Save lesniakania/b96e8f20bfe55f98eaa7 to your computer and use it in GitHub Desktop.
import React from 'react';
import ReactDOM from 'react-dom';
import { Provider } from 'react-redux';
import { reduxReactRouter, ReduxRouter } from 'redux-router';
import Routes from './routes';
import { configureStore } from './Store';
import createHistory from 'history/lib/createBrowserHistory'
var app = document.getElementById('app');
// here we can use now __INITIAL_STATE__ from server
const initialState = window.__INITIAL_STATE__;
const store = configureStore(initialState, createHistory, reduxReactRouter);
ReactDOM.render(
<Provider store={store}>
<ReduxRouter routes={Routes} />
</Provider>,
app
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment