Also how to install react js from scratch
Install Node.js: React JS requires Node.js to run. You can download and install Node.js from the official website: https://nodejs.org/en/.
Open the Command prompt using win+r, and type cmd. You can navigate to your desired folder and run this command.
create-react-app my-react-app
This will create a new React project in a directory called "my-react-app".
Once the project is created, you can start the development server by running the following command:
cd my-react-app
npm start
This will start the development server and open the project in your default web browser. You can now start building your React app.
You can select any name for your app
good nice
thanks