React Router and its Types are in npm, so we can install them from there.
Before installing React Router, we need to create our React shop project. Let's get ready to do that by choosing an empty folder of our choice and opening Visual Studio Code. To do this, follow these steps:
- Let's now open a Terminal and enter the following command to create a new React and TypeScript project:
npx create-react-app reactshop --typescript
Note that the version of React we use needs to be at least version 16.7.0-alpha.0. We can check this in the package.json file. If the version of React in package.json is less that 16.7.0-alpha.0, then we can install this version using the following command:
npm install [email protected]
npm install [email protected]
- After the project is created, let's add TSLint as a development dependency...