Project Structure
Organize your frontend code effectively.
Overview
This guide explains the recommended project structure for EZ-Console frontend applications. Following this structure helps maintain code organization, scalability, and developer productivity.
Standard Directory Structure
web/
├── src/
│ ├── pages/ # Page components
│ │ ├── products/ # Feature-based pages
│ │ │ ├── ProductList.tsx
│ │ │ ├── ProductForm.tsx
│ │ │ └── ProductDetail.tsx
│ │ └── Dashboard.tsx
│ ├── components/ # Reusable components
│ │ ├── common/ # Common components
│ │ │ ├── DataTable.tsx
│ │ │ └── SearchForm.tsx