comando para criar um aplicativo React
npx create-react-app my-app
cd my-app
npm start
Proud Panther
npx create-react-app my-app
cd my-app
npm start
// Go into the folder where you wish to create your app
yarn create react-app appname
npx create-react-app app-name
cd app-name
npm start
npx create-react-app@latest your-project-name --use-npm
npx create-react-app@latest your-project-name --use-npm //V.5.0.0 way to create a react app
cd your-project-name
npm start //To Run the App
//Updated !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
npx create-react-app my-app
cd my-app
npm start
//Happy Coding! (:
npx create-react-app your_app_name
cd your_app_name
npm start