reading-notes

Reading Notes

View the Project on GitHub simon-panek/reading-notes

Code 401: Class 38 - Redux Asynchronous Actions


Questions

  1. How granular should your reducers be? In most cases it will probably be beneficial to have a unique reducer for each action so that it be reused in other processes

  2. Pro or Con – multiple reducers can “fire” when a commonly named action is dispatched In most cases this is probably a con because it would be difficult to make independent changes if necessary

  3. Name a strategy for preventing the above Separate out the actions so each calls a specific reducer

Vocabulary

Watch: Dan Abramov on Suspense

Read: Async Actions

Read: Thunk Middleware

Read: Redux Thunk


Return to reading-notes Deployed Site

Return to reading-notes Mark Down