Last active
November 5, 2015 07:43
-
-
Save lesniakania/f85322f0b90c153a3a18 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ... | |
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