What is Redux logger?

LogRocket is a production Redux logging tool that lets you replay problems as if they happened in your own browser . Instead of guessing why errors happen, or asking users for screenshots and log dumps, LogRocket lets you replay Redux actions + state, network requests, console logs, and see a video of what the user saw.

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