-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathFileOrgonisation.txt
More file actions
19 lines (19 loc) · 966 Bytes
/
FileOrgonisation.txt
File metadata and controls
19 lines (19 loc) · 966 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
my-app/
├── public/ # Static files
│ ├── index.html # HTML template
│ └── favicon.ico # App icon
├── src/ # Main application code
│ ├── assets/ # Static assets like images, fonts, etc.
│ ├── components/ # Reusable components
│ ├── pages/ # Page-level components
│ ├── hooks/ # Custom React hooks
│ ├── context/ # Context API files
│ ├── utils/ # Utility functions
│ ├── services/ # API or service calls
│ ├── styles/ # Global styles or theme files
│ ├── App.js # Main app component
│ ├── index.js # React entry point
│ └── App.css # App-specific styles
├── .gitignore # Git ignore rules
├── package.json # Project metadata and dependencies
└── README.md # Project documentation