capstone-frontend/
: This is directory contains all the front end code of the application.node_modules/
: Node.js packages and dependencies (auto-generated by npm or yarn). This folder is typically not included in version control.public/
: This directory contains publicly accessible assets. For example, static images, HTML templates, and other resources that don't require processing.package.json
: This file lists your project's dependencies and configuration. It's used by Node.js and package managers like npm or yarn..gitignore
: This file specifies which files or directories should be ignored by Git. Commonly ignored files includenode_modules/
and build artifacts.utils/
: Utility functions, helper classes, or modules used across the project.index.js
: The main entry point of your application.src/
: This directory contains all the source code for your project. It's often organized further into subdirectories.Components/
: React components, each in its own file.styles/
: CSS or styling related files.Pages/
: Application pages, if you're using a routing system like React Router.Services/
: Servicesindex.js
: The main entry point of your application.
npm install
npm start