Login
Remember
Register
Ask a Question
What is Subscribe? How you can use it in React App?
+2
votes
asked
Jun 25, 2021
in
Redux
by
SakshiSharma
What is Subscribe? How you can use it in React App?
subscribe-redux
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jun 25, 2021
by
SakshiSharma
Subscribe is a method which is used to subscribe data/state from Store automatically whenever there will any changes in state.
store.subscribe()
store.subscribe(() => {
let storeData = store.getState();
console.log(storeData);
});
...