Problem Statement
What files and folders are generated in a new React project?
Explanation
A typical React app contains `src` for code, `public` for static assets, `package.json` for dependencies, `node_modules` for installed packages, and configuration files like `.gitignore` and `README.md`. Inside `src`, you’ll find `index.js` and `App.js` as entry points.
Practice Sets
This question appears in the following practice sets: