Get started by setting up a React app using the Create React App (CRA) CLI tool. With this, you can generate a project to get up and running with React.
Using npx, you can setup a React app with CRA with the following command in your terminal:
npx create-react-app my-app && cd my-app
To start the project:
yarn start