0 votes
in ReactJS by

What is Redux Thunk?

1 Answer

0 votes
by

Redux Thunk middleware 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. The inner function receives the store methods dispatch() and getState() as parameters.

Related questions

0 votes
0 votes
+1 vote
asked Jun 25, 2021 in Redux by SakshiSharma
0 votes
asked Dec 22, 2023 in ReactJS by john ganales
...