You will need to create a redux action, and dispatch it from inside the child component . Pass the data that you want to store. You will need to create a reducer to handle this action. It should receive the action and save the data in the store.2 Ağu 2019
Read moreWhere is state Redux?
The state in Redux is stored in memory, in the Redux store . This means that, if you refresh the page, that state gets wiped out. The state in redux is just a variable that persists in memory because it is referenced (via closure) by all redux functions.
Read moreHow do I use Redux state?
Using Redux with any UI layer requires a few consistent steps:
Read more