Skip to content

Latest commit

 

History

History
16 lines (12 loc) · 521 Bytes

__note-10.md

File metadata and controls

16 lines (12 loc) · 521 Bytes
  • design admin and user dashboard

    • for admin dashboard created two pages, catagory and product and also AdminMenu in nav folder
    • for user dashboard two pages is created profile and orders and also UserMenu in nav folder
  • then routed them in the app.js file

<Route path="user/profile" element={<UserProfile />} />
<Route path="user/orders" element={<UserOrders />} />
<Route path="admin/category" element={<AdminCategory />} />
<Route path="admin/product" element={<AdminProduct />} />