Login
Remember
Register
Ask a Question
What is Redux Thunk? Why do we need Redux Thunk?
+1
vote
asked
Jun 25, 2021
in
Redux
by
SakshiSharma
What is Redux Thunk? Why do we need Redux Thunk?
redux-thunk
Please
log in
or
register
to answer this question.
1
Answer
0
votes
answered
Jun 25, 2021
by
SakshiSharma
Redux Thunk is a middleware.
Redux Thunk allows you to write action creators that return a function instead of an action.
The thunk can be used to delay the dispatch of an action, or to dispatch only if a certain condition is met.
...