create-react-app 📦
First thing first, let's create a React App. Creating a react app is simple.
Step 1: Create an App
npx create-react-app my-app
Step 2: Navigate into the newly created folder (can be done through double-clicking on that)
cd my-app
Step 3: Run the app
npm start
or if using yarn
yarn run start