123456789 |
- export const adminMenu = [
- { path: "/admin", id: 0, text: "Main Page", hideWhenAuth: false },
- { path: "/admin/add_new_event", id: 1, text: "Add New Event", hideWhenAuth: false },
- { path: "/admin/my_events", id: 2, text: "My Events", hideWhenAuth: false },
- { path: "/admin/photogalary", id: 3, text: "Photogalery", hideWhenAuth: false },
- { path: "/admin/feedbacks", id: 4, text: "Feedbacks", hideWhenAuth: false },
- { path: "/main_page", id: 5, text: "Log out", hideWhenAuth: false },
- // { path: "/auth", id: 5, text: "Auth", hideWhenAuth: true }
- ];
|