Created
April 17, 2018 20:03
-
-
Save sebassdc/d1a23f87fef355cb93d9228fac4eae33 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 default (initialState, actionHandlers) => | |
(state = initialState, action) => | |
actionHandlers.hasOwnProperty(action.type) | |
? actionHandlers[action.type](state, action) | |
: state |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment