Async Actions
In the basics guide, we built a simple todo application. It was fully synchronous. Every time an action was dispatched, the state was updated immediately.
In this guide, we will build a different, asynchronous application. It will use the Reddit API to show the current headlines for a selected subreddit. How does asynchronicity fit into Redux flow?
Actions
When you call an asynchronous API, there are two crucial moments in time: the moment you start the call, and the moment when y