I have a multi-step form application, and I\'m struggling with getting my head around how I can save my redux state and replay it after a refresh for example? Going back/forward
You can't store state on refresh this is normal. Typically you store these inside cookies or web storage.
Redux:
Form
component, use componentWillMount
method to read the localstorage
and dispatch
the data to a reducerIf you use redux to store form data dispatch the properties of localstorage.
If not read the localstorage inside the Form
component and set the initial values.
Hope this helps !