// Create React app
npx create-react-app my-app
// Redux + Plain JS template
npx create-react-app my-app --template redux
// Redux + TypeScript template
npx create-react-app my-app --template redux-typescript
## Open your Terminal and put these commands, then hit Enter
npx create-react-app my-react-app
cd my-react-app
npm start
## Then open http://localhost:3000/ to see your app.
npx create-react-app app-name
cd app-name
npm start
npx create-react-app minha-pagina
npx create-react-app <app_name>
cd <app_name>
npm start
npm install --save typescript @types/node @types/react @types/react-dom @types/jest
# or
yarn add typescript @types/node @types/react @types/react-dom @types/jest
npx create-react-app react-tutorial