Login
Remember
Register
Ask a Question
What is Dispatch?
+1
vote
asked
Jun 25, 2021
in
Redux
by
SakshiSharma
What is Dispatch?
dispatch-redux
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jun 25, 2021
by
SakshiSharma
Dispatch is a method which triggers action with type and payload to Reducer.
store.dispatch()
store.dispatch({
type: "SET_LANGUAGE",
lang_code: "hi"
});
...