InterviewSolution
Saved Bookmarks
| 1. |
What is Redux Thunk? |
|
Answer» Redux THUNK middleware is something that allows the developers to WRITE the action creators that return functions, not actions. The redux-thunk can also be used for postponing the dispatch of action or to dispatch just if a specific condition is met. The INNER function gets the “STORE” methods dispatch and getState() as the parameters. |
|