Introduction to Managing State Using Redux
Explore how to manage application state effectively in React by using Redux. Understand the role of the Redux store and reducers in creating predictable state containers, and learn to integrate asynchronous actions smoothly outside of reducers. This lesson helps you refactor existing code to implement Redux, improving asynchrony handling and state management clarity in your React apps.
We'll cover the following...
We'll cover the following...
Introducing Redux
Now that we are using a reducer to manage the state in our React app, we’ve run into the problem of integrating our asynchronous actions with our reducer.
We’ve chosen to keep our asynchronous actions outside our reducer, which ...