What are the features of Redux DevTools?

Some of the main features of Redux DevTools are below:

  1. Lets the users inspect every state and action payload.
  2. Allows the users to go back in time by cancelling actions.
  3. If we change the reducer code, each staged action will be re-evaluated.
  4. If the reducers throw, we will see during which action this happened, and what the error was.
  5. With persistState() store enhancer, we can persist debug sessions across page reloads.