UNPKG
redux-modular
Version:
latest (0.4.1)
0.4.1
0.4.0
0.3.2
0.3.1
0.3.0
0.2.0
0.1.2
0.1.1
0.1.0
0.0.2
0.0.1
Modular Redux helpers
github.com/thomasdashney/redux-modular
thomasdashney/redux-modular
redux-modular
/
src
/
create-reducer.js
7 lines
(6 loc)
•
234 B
JavaScript
View Raw
1
2
3
4
5
6
7
export
default
function
createReducer
(
initialState, reducersByAction
) {
return
(
state = initialState, action
) =>
{
const
reducer = reducersByAction[action.
type
]
return
reducer ?
reducer
(state, action.
payload
) : state } }