React JS Project Structure.
1. node_modules:
This folder contains all the packages and dependencies that are installed in your react app.
2. Public:
The public folder contains static files such as index.html, the icon of the app, images, etc.
3. src:
This is the most important part of the app. This is where you do coding of your app, In this folder, you place all your files related to development like pages, components, CSS files, images, etc.
4. gitignore:
This file tells Git which files to ignore when committing your project the GitHub Repo.
5. package-lock.json:
The goal of this file is to keep track of the exact version of every package that installed in your app.
6. package.json:
This file contains a list of all dependencies that have been installed in your app.
Like, Share and Subscribe #DevTools99 for more useful videos, tools info and #tutorials . Thank you!