0 votes
in React JS by (1.8k points)
What are the features of Redux DevTools?

1 Answer

0 votes
by (1.8k points)

Below are the major features of Redux devTools

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

Related questions

0 votes
0 votes
0 votes
0 votes
0 votes
0 votes
0 votes
0 votes
asked Jun 19, 2020 in React JS by JackTerrance (1.8k points)
...