Skip to content

Instantly share code, notes, and snippets.

@arackaf
Created September 4, 2017 00:56
Show Gist options
  • Save arackaf/0a6103e7e59b6e1bff1e859794b9dd05 to your computer and use it in GitHub Desktop.
Save arackaf/0a6103e7e59b6e1bff1e859794b9dd05 to your computer and use it in GitHub Desktop.
const combineLazyReducers = (reducers, initialState) => {
let reducer = combineReducers(reducers);
return (state, action) => ({...initialState, ...reducer(state, action)});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment