...

/

Combining Reducers

Combining Reducers

Learn how to combine reducers.

We'll cover the following...

The technique of reducer combination is so convenient and broadly used that Redux provides the combineReducers() function to facilitate it. This helper function does exactly what rootReducer() did in our earlier example, with some additions and validations:

import {
...