What is redux saga call?

The redux-saga middleware takes care of executing the function call and resuming the generator with the resolved response. This allows us to easily test the Generator outside the Redux environment. Because call is just a function which returns a plain Object .

Read more

Why do we need thunk?

Redux Thunk is middleware that allows you to return functions, rather than just actions, within Redux . This allows for delayed actions, including working with promises. One of the main use cases for this middleware is for handling actions that might not be synchronous, for example, using axios to send a GET request.

Read more