React Project Setup
How to Create React Project
Make sure you've already install node js + npm
1. Open your terminal, and move to the any directory you want to keep the project.
2. Type following command
npx create-react-app yourAppName
or You can use Vite, which is faster
npm create vite@latest
React Folder & File
/public : it' s a directory to keep html file (index.html) and the images will keep in this directory
/src : it's a directory to keep javascript or Typescript file. All file that you develop keep in this directory
package.json :this file include information of project and the dependency that you install and script to run command