product-management-system/
├── public/
├── src/
│ ├── assets/
│ ├── components/
│ ├── pages/
│ │ ├── HomePage.jsx
│ │ ├── ProductsPage.jsx
│ │ ├── UsersPage.jsx
│ │ ├── OrdersPage.jsx
│ │ ├── LoginPage.jsx
│ │ └── DashboardPage.jsx
│ ├── features/
│ │ ├── auth/
│ │ │ ├── slice.js
│ │ │ ├── actions.js
│ │ │ └── selectors.js
│ │ ├── products/
│ │ │ ├── slice.js
│ │ │ ├── actions.js
│ │ │ └── selectors.js
│ │ ├── users/
│ │ │ ├── slice.js
│ │ │ ├── actions.js
│ │ │ └── selectors.js
│ │ ├── orders/
│ │ │ ├── slice.js
│ │ │ ├── actions.js
│ │ │ └── selectors.js
│ │ └── shared/
│ │ ├── notificationsSlice.js
│ │ └── utils.js
│ ├── hooks/
│ ├── services/
│ │ ├── api.js
│ │ ├── authService.js
│ │ ├── productService.js
│ │ ├── userService.js
│ │ └── orderService.js
│ ├── utils/
│ ├── store/
│ │ └── store.js
│ ├── App.jsx
│ ├── index.jsx
│ └── routes/
│ └── AppRouter.jsx
├── .env
├── .gitignore
├── package.json
└── README.md
For further actions, you may consider blocking this person and/or reporting abuse
Top comments (1)
Comment me if any additional information is needed for this Article