Redux - Asynchronous Actions
Review, Research, and Discussion
- How granular should your reducers be?
- You would use them for each component that you need a reducer for.
- Pro or Con – multiple reducers can “fire” when a commonly named action is dispatched
- Con, because if its too common, you might not intend for it the reducers to fire.
- Name a strategy for preventing the above
- Name your action something different
Vocab
- store
- a function that holds your reducers
- combined reducers
- object that contains multiple reducers