Overview of Redux Thunk

In this section we discuss Redux Thunk. So far we have looked at solutions that synchronously interact with the redux store, but what about asynchronous interactions, like fetching from an API or posting to an API. This is where Redux-Thunk comes in, Redux thunk is a middleware solution that facilitates, complex async interaction with the redux store.


Here is the link to GitHub repository, https://github.com/reduxjs/redux-thunk

On the read me page of the repository the link four articles, I have listed the articles in the order that I recommend reading them.







Complete and Continue