...
/Setting up Redux and Creating State Objects
Setting up Redux and Creating State Objects
Learn about installing Redux.
We'll cover the following...
Setting up Redux
Before we can use Redux, we need to install it, along with the TypeScript types. Let’s perform the following steps to install Redux:
We can install the core Redux library via the terminal with the following command:
Press + to interact
npm install redux
Note that the core Redux library contains TypeScript types within it, so there is no need for an additional install for these. ...