🗄️ / Folder structure
.
├── 📁 assets // Static assets used in the app
│ ├── 📁 fonts // fonts in (preferably) woff and woff2 format
│ ├── 📁 icons // icons in (preferably) svg format
│ ├── 📁 images // images in (preferably) jpg, jpeg or png format
│ └── 📁 other // other assets
├── 📁 components // All single or multi use components used on the pages
├── 📁 config // Constants (API urls, regexes, route paths, etc.)
├── 📁 hooks // Custom hooks (+ api calls)
├── 📁 models // Models containing typings for Objects
├── 📁 screens // Main pages of the app
├── 📁 store // Providers, reducers, actions, store config, etc.
├── 📁 styles // Global stylesheets
├── 📁 utils // Extra Utilities
├── 📄 index.tsx
└── 📄 react-app-env.d.ts