comando para crear la aplicación 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
npx create-react-app my-app --template typescript
# or
yarn create react-app my-app --template typescript
npx create-react-app my-app --template typescript
# or
yarn create react-app my-app --template typescript
To create typescript version
npx create-react-app my-app --template typescript
# or
yarn create react-app my-app --template typescript
npx create-react-app hello-world
cd hello-world && npm start
npx create-react-app app-name --template typescript
// or using yarn
yarn create react-app app-name --template typescript