ENEI2019-Public/App/app/Helpers/createReducer.js

10 lines
280 B
JavaScript

export default function createReducer(initialState, handlers) {
return function reducer(state = initialState, action) {
if (handlers.hasOwnProperty(action.type)) {
return handlers[action.type](state, action)
} else {
return state
}
}
}