UNPKG

@interpals/react-redux-modal

Version:

react-redux-modal is a React modal implemented with Redux

9 lines (7 loc) 213 B
'use strict'; export function createReducer(initialState, fnMap) { return (state = initialState, {type, payload}) => { const handle = fnMap[type]; return handle ? handle(state, payload) : state; }; }