Redux Combined Reducers - 401-advanced-javascript-Mai/amman-javascript-401d1 GitHub Wiki

Combined Reducers

Combined reducers are nothing more than pulling in more than one reducer from source and creating a keyed object from them.

actions?

Each reducer technically has its own actions and creators. However, they can cross over and both be dispatched. In this example, if an action of type ‘RESET’ is ever dispatched by any action creator, both of the reducers would actually respond. This can be` very powerful, as often times actions are valid for multiple reducers … but this behavior needs to be well understood or it’ll cause unintended consequences.