Menu

Understand the Folder Structure

Understand the Folder Structure

FRONTEND MINI PROJECTS

└── Age_Calculator

├── node_modules

├── public

├── src

│ ├── assets

│ ├── components

│ │ └── AgeCalculator.jsx   # Contains the age calculation logic and UI

│ ├── App.css        # Styling file for the App component

│ ├── App.jsx # Global styles applied to AgeCalculator component

│ ├── index.css

│ └── main.jsx  # Entry point of React app, connects App to index.html

├── .gitignore

├── eslint.config.js

├── index.html    # Main HTML file where React app is mounted

├── package-lock.json   # Project details and dependency list

├── package.json  # Locks exact dependency versions for consistency

├── README.md

└── vite.config.js