From the course: React: Software Architecture

Unlock this course with a free trial

Join today to access over 25,500 courses taught by industry experts.

Big state with Redux

Big state with Redux

- [Presenter] Okay, the next state management tool that we're going to take a look at here is redux, which is probably one of the most popular state management tools, with the obvious exception of useState and context, which are included in the react library. Now, first of all, in order to prevent things from getting too complicated with all the changes we made with recoil, what I've done is, I've reverted the code back to the point that we were at, when we first added the CounterButton with the useState hook. You can find this in the starting state of the exercise files. So, you don't need to worry about, actually doing this by hand. So, before we move on, I do want to point out that, what we're going to be covering in this video, is just the very basics of how redux works, and how to implement a CounterButton using redux. So, to begin with, let's install the redux packages, there are two of them, the first one is…

Contents