Default Values
Learn about the default value requirement in reducers.
We'll cover the following...
One of the requirements of combineReducers() is for each reducer to define a default value for its substate.  When using this approach, the default structure of the state tree is built dynamically by the reducers. This guarantees that changes to the tree ...
 Ask