CLASS 38
Redux Asynchronous
REVIEW, RESEARCH AND DISCUSS
How granular should your reducers be?
- It depends on how many actions your apllication needs.
Pro or Con – multiple reducers can “fire” when a commonly named action is dispatched
- If your application is organized its Pro if not its a Con.
Name a strategy for preventing the above
- Thunk middleware
TERMS:
store
- Is where the whole state of the application is put.
combined reducers
- The function that helps organize reducers to manage their own slices of state.