chainReducers
// JavaScript
function chainReducers(firstChildReducer, ...otherChildReducers)// TypeScript
function chainReducers<S = any, A extends Action = AnyAction>(
firstChildReducer: Reducer<S, A>,
...otherChildReducers: SubReducer<S, A>[]
): Reducer<S, A>Details
Examples
See Also
Last updated