Slide 37
Slide 37 text
Redux Saga middleware let you create Sagas, which are
generators responsible for orchestrating complex/asynchronous
operations, to gather all your side effects logic in a central place
Redux
redux-thunk
https://github.com/gaearon/redux-thunk
Middlewares
Redux Thunk middleware allows you to write action creators that
return a function instead of an action
The thunk can be used to delay the dispatch of an action, or to
dispatch only if a certain condition is met
redux-saga
https://github.com/yelouafi/redux-saga