Skip to content

Instantly share code, notes, and snippets.

@lesniakania
Last active November 5, 2015 07:43
Show Gist options
  • Save lesniakania/f85322f0b90c153a3a18 to your computer and use it in GitHub Desktop.
Save lesniakania/f85322f0b90c153a3a18 to your computer and use it in GitHub Desktop.
// ...
export function configureStore(initialState, createHistory, reduxReactRouter) {
const createStoreWithMiddleware = compose(
applyMiddleware(thunk),
reduxReactRouter({ routes, createHistory })
)(createStore);
return createStoreWithMiddleware(reducers, initialState);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment