Creating a Creact React App (CRA) Project
If you already know how to create a React project, you can skip this section. Otherwise, let's go!
npx create-react-app my-app
or with yarn:
yarn create react-app my-app
If you want typescript
then use --template typescript
.
Once you have a project, you'll find a setup that looks a little like this:
- Output
- Code
Hello, React:)