+1 vote
in Redux by
What is Redux Thunk? Why do we need Redux Thunk?

1 Answer

0 votes
by
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.

Related questions

0 votes
asked Apr 13, 2021 in Redux by Robindeniel
+1 vote
asked Apr 13, 2021 in Redux by Robindeniel
...