Skip to content

Instantly share code, notes, and snippets.

@javilobo8
Created August 13, 2017 11:19
Show Gist options
  • Save javilobo8/58320fcb1e12966f506bf39d8fd88f07 to your computer and use it in GitHub Desktop.
Save javilobo8/58320fcb1e12966f506bf39d8fd88f07 to your computer and use it in GitHub Desktop.
export default function createReducer(INITIAL_STATE, handlers) {
return function reducer(state = INITIAL_STATE, action) {
if (handlers[action.type]) {
return handlers[action.type](state, action);
}
return state;
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment