ElectiveHub icon indicating copy to clipboard operation
ElectiveHub copied to clipboard

Implement the Ideal Folder Structure for Frontend Development ✨

Open Nishitbaria opened this issue 2 years ago • 6 comments

project-root/ │ ├── src/ │ ├── components/ │ │ ├── Header.js │ │ ├── Footer.js │ │ └── ... │ │ │ ├── pages/ │ │ ├── Home.js │ │ ├── About.js │ │ └── ... │ │ │ ├── styles/ │ │ ├── App.css │ │ ├── Header.css │ │ └── ... │ │ │ ├── index.js │ └── App.js │ ├── public/ │ ├── index.html │ ├── favicon.ico │ └── ... │ ├── package.json ├── README.md ├── .gitignore └── ...

Nishitbaria avatar Oct 09 '23 17:10 Nishitbaria