DEV Community

Discussion on: Creating stores using React context, hooks, and Immer

Collapse
 
ferdaber profile image
Ferdy Budhidharma

You unfortunately can't see the previous state since you're not using Redux. Two options: transform your store so that it keeps a history stack of previous states, or use hook up all of this to a Redux store, and have it publish out the state to Redux DevTools.