DEV Community

Muluken Zeleke
Muluken Zeleke

Posted on

Product Management System in React Redux State Management Folder Strcture

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

Top comments (1)

Collapse
 
muluken_zeleke_15afa3e625 profile image
Muluken Zeleke

Comment me if any additional information is needed for this Article