React Redux - How to store form state so that it can be populated again when user returns to page
问题 I have a search form that loads results. Everything gets updated in the Redux state except for the values selected in the form fields. Lets say the search below shows 3 results. User clicks on result #2 and does not like it. The click the back button but the form state is cleared. How can I avoid this and make sure the form state stays ? I am storing the results in Redux and able to load that but not sure how to handle state. I dont want to use packages such as redux-form if possible because