+ 1
What is Redux thunk. How to implement it on reactjs?
I want to know about redux-thunk I am now learning redux through the react JS can you provide some links about in simple understable language.
2 odpowiedzi
+ 3
Redux thunk basically allows you to dispatch asynchronous actions (API calls for instance).
To implement it, install it then add it to your redux store as a middleware. You can find the installation guide in their GitHub.
+ 2
KINGDX Thanks for the support