Skip to content

Latest commit

 

History

History
executable file
·
25 lines (17 loc) · 450 Bytes

create-a-react-app.md

File metadata and controls

executable file
·
25 lines (17 loc) · 450 Bytes

Create A React App

Category: React

Create a React app from the command line using the TypeScript template as follows:

npx create-react-app my-project --template typescript
cd my-project

Install package dependencies:

yarn

Start the app:

yarn start

Browse to the application at http://localhost:3000

See Create React App - Getting Started for more details.