Folder structure

uko-react/
├── public/
| ├── static/
| | ├── avatar
| | ├── background
| | ├── brand-logo
| | ├── browser
| | ├── connect-accounts
| | ├── cover
| | ├── some more folders
| └── and some files
├── src/
| ├── config
| ├── constants
| ├── routes
| ├── components/
| | ├── accordion
| | ├── accountSettings
| | ├── adminEcommerce
| | ├── authentication
| | ├── calender
| | ├── chat
| | ├── Dashboards
| | ├── dataTable
| | ├── invoice
| | ├── landingPage
| | ├── Layouts
| | ├── shop
| | ├── teamMember
| | ├── todoList
| | ├── ukoProjects
| | ├── userManagement
| | └── userProfile
| | └── some more files
| ├── contexts/
| | ├── SettingsContext.js
| | ├── JWTAuthContext.js
| | └── FirebaseContext.js
| | └── Auth0Context.js
| ├── __fakeApi__/
| | ├── index.js
| | └── mock.js
| | └── user.js
| ├── hooks/
| | ├── useAuth.js
| | ├── useSettings.js
| | └── useLocalStorage.js
| | └── useWindowSize.js
| ├── pages/
| | ├── adminEcommerce/
| | | └── CustomerList
| | | └── OrderList
| | | └── ProductList
| | ├── authentication/
| | | ├── Login
| | | ├── Register
| | ├── dashboards/
| | | ├── SaaS
| | | ├── Sales
| | | ├── ProjectManagement
| | | ├── ProjectManagementV2
| | ├── dataTable/
| | | ├── DataTableV1
| | | └── DataTableV2
| | ├── invoice/
| | | ├── AddInvoice
| | | ├── InvoiceDetails
| | | ├── InvoiceList
| | ├── shop
| | | ├── Cart
| | | └── index
| | | └── Payment
| | | └── PaymentSuccess
| | ├── ukoProjects
| | | ├── ProjectDetails
| | | └── UkoProjectV1
| | | └── UkoProjectV2
| | | └── UkoProjectV3
| | ├── userManagement
| | | ├── AddNewUser
| | | └── UserGrid
| | | └── UserList
| | | └── UkoProjectV3
| | ├── 404
| | ├── AccountSettings
| | ├── Calender
| | ├── Chat
| | ├── TodoList
| | ├── UserProfile
| | ├── TeamMember
| | ├── LandingPage
| ├── theme/
| | ├── index
| | └── themeColors
| ├── utils/
| | ├── axios
| | ├── checkDueDate
| | ├── convertSlug
| | ├── generateId
| ├── icons/
| | ├── some icons file
└── README.md