DEV Community

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

Collapse
 
favreleandro profile image
Leandro Favre • Edited

Hi, great article! How can I see the previous state? I understand you use immer to make an immutable state.

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.