Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Stanley-Yao/39a3df57fdd723a094e62e70974da733 to your computer and use it in GitHub Desktop.
Save Stanley-Yao/39a3df57fdd723a094e62e70974da733 to your computer and use it in GitHub Desktop.
Redux reduce-reducers example
const mainReducer = combineReducers({a, b, c});
const secondReducer = function(state, action) {
switch(action.type) {
case SOME_ACTION:
return someSpecificReducer(state.a, state.c);
default: return state;
}
};
const rootReducer = reduceReducers(mainReducer, secondReducer);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment