Created
May 29, 2016 21:52
-
-
Save markerikson/b1a22137527bf8e0ce6928ffb8e46fe7 to your computer and use it in GitHub Desktop.
Redux reduce-reducers example
This file contains hidden or 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
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