November 2018
Beginner
502 pages
10h 22m
English
Let's add the React library to our project, by running the following command in the terminal:
npm install react react-dom
We also want the TypeScript types for React. So, add these to our project as a development dependency, as follows:
npm install @types/react @types/react-dom --save-dev
Read now
Unlock full access