##Complete the following steps:
- Open your command line or terminal
- cd into your projects directory
- Run
npx create-react-app APP_NAMEto create a new folder called APP_NAME with a React app inside
eg npx create-react-app react-day2
OR
-
Run
npm i -g create-react-appand thencreate-react-app APP_NAME -
cd ./APP_NAMEto go into the new directory -
Run
npm run startto start your React app