Reputation: 211
How to Get complete data from redux persist store to take backup of store and store in my drive. Kindly help me to get the complete values in my store
I have tried by using store.getstate(). Can anyone guide my to get it
Upvotes: 0
Views: 488
Reputation: 7803
Use subscribe
to add a state change listener, and put your logic in it.
store.subscribe(() => {
var state = store.getState();
// Your logic
});
Upvotes: 1