Redux DevTools is nothing but a time travel environment that makes it possible for us to live edit in Redux with a variety of functionalities like action replay, hot reloading, and customizable UI.
Redux DevTools makes it possible for us to inspect all the states and action payload.
We can go back into the time simply by cancelling the actions.
Each stage action is re-evaluated in case we change the code of the reducer.
We can also continue our debug sessions across page reloads with the help of persistState() store enhancer.