Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save big-kahuna-burger/2805b6a45f3cba02f2a324f7b3f81b0d to your computer and use it in GitHub Desktop.
Save big-kahuna-burger/2805b6a45f3cba02f2a324f7b3f81b0d 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