ClaireRoush / ReactGirlySocialNetwork

A smol social network for cuties!!
https://rgsn.live
4 stars 1 forks source link

Change folder structure on frontend #90

Closed OlegSuperBro closed 2 weeks ago

OlegSuperBro commented 4 weeks ago

Current files structure is hard to scale and maintain on bigger scale. My current version of file structure are written here TL;DR this

my-app/
├── public/
├── src/
│   ├── assets/
│   ├── components/
│   ├── hooks/
│   ├── pages/
│   ├── services/
│   ├── types/
│   ├── utils/
│   ├── App.tsx
│   ├── index.tsx
│   ├── react-app-env.d.ts
│   ├── reportWebVitals.ts
│   ├── setupTests.ts
├── .eslintrc.json
├── .prettierrc
├── tsconfig.json
├── package.json
└── README.md

but also with added subfolders (for example "components/chat/ChatMessage.tsx")

froggy-jpg commented 4 weeks ago

i like this, our current structure is definitely a bit messy :3

OlegSuperBro commented 3 weeks ago

I think we need another approve for this structure from @ClaireRoush after that i will work on it