Introduction to React from inexperienced|Environment construction

React’s

React has a way to build an environment using either the yarn or npm package manager.

How to use yarn

npm install -g create-react-app
npx create-react-app project name
npm run start

How to use npm

yarn global add create-react-app
npx create-react-app project name
yarn start