Login
Remember
Register
Ask a Question
What are some of Redux DevTools' most essential features?
0
votes
asked
Aug 28, 2022
in
Redux
by
john ganales
What are some of Redux DevTools' most essential features?
redux
devtools
features
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Aug 28, 2022
by
john ganales
Redux DevTools has the following essential features:
Redux DevTools is a time travel environment that allows us to live edit in Redux with action replay, hot reloading, and a customised user interface.
We can check all states and the action payload using Redux DevTools. Simply cancelling activities allows us to travel back in time.
If we update the code of the reducer, each stage action is re-evaluated.
With the persist state() store enhancer, we can also keep our debug sessions across page reloads.
...