Learn how to use combineReducers() utility function to generate a reducer from several other reducers instead of writing it by hand.
Can we use combineReducers() several times in the "nested" reducers or is it just here to create the top level reducer ?
Boris,
You can absolutely use combineReducers() multiple times. In fact "shopping cart" example in Redux repo does that.