Reading 28 - morgan-401-advanced-javascript/seattle-javascript-401n14 GitHub Wiki
Read
async actions
Broken link? https://redux.js.org/advanced/asyncactions
redux thunk
Link Redux Thunk is a middleware that lets you call action creators that return a function instead of an action object. That function receives the store’s dispatch method, which is then used to dispatch regular synchronous actions inside the body of the function once the asynchronous operations have completed.