yarn create react-app (folderName OR .)
├── public
│ └── index.html
├── src
│ ├── app
│ │ └── store.jsx
│ ├── assets
│ │ ├── loading.gif
│ │ └── result.svg.gif
│ ├── components
│ │ ├── modals
│ | │ ├── BrandModal.jsx
│ | │ ├── FirmModal.jsx
│ | │ ├── ProductModal.jsx
│ | │ ├── PurchaseModal.jsx
│ | │ └── SaleModal.jsx
│ | ├── BrandCard.jsx
│ | ├── Charts.jsx
│ | ├── FirmCard.jsx
│ | ├── KpiCard.jsx
│ | ├── LoginForm.jsx
│ | ├── MenuListItems.jsx
│ │ └── RegisterForm.jsx
│ ├── features
│ | ├── authSlice.jsx
│ │ └── stockSlice.jsx
│ ├── helper
│ │ └── ToastNotify.js
│ ├── hooks
│ | ├── useAuth.jsx
│ | ├── useAxios.jsx
│ │ └── useStockCall.jsx
│ ├── pages
│ │ ├── Brand.jsx
│ │ ├── Dashboard.jsx
│ │ ├── Firms.jsx
│ │ ├── Home.jsx
│ │ ├── Login.jsx
│ │ ├── Products.jsx
│ │ ├── Purchases.jsx
│ │ ├── Register.jsx
│ │ └── Sales.jsx
│ ├── router
│ │ ├── AppRouter.jsx
│ │ └── PrivateRouter.jsx
│ ├── styles
│ │ └── globalStyle.jsx
│ ├── App.js
│ ├── index.js
│ └── index.css
├── package.json
├── .gitignore
└── yarn.lock