You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

36 lines
715 B

  1. // assets
  2. import { DashboardOutlined } from '@ant-design/icons';
  3. // icons
  4. const icons = {
  5. DashboardOutlined
  6. };
  7. // ==============================|| MENU ITEMS - DASHBOARD ||============================== //
  8. const dashboard = {
  9. id: 'group-dashboard',
  10. title: 'Navigation',
  11. type: 'group',
  12. children: [
  13. {
  14. id: 'dashboard',
  15. title: 'Dashboard',
  16. type: 'item',
  17. url: '/dashboard',
  18. icon: icons.DashboardOutlined,
  19. breadcrumbs: false
  20. },
  21. // {
  22. // id: 'arsdashboard',
  23. // title: 'ARS Dashboard',
  24. // type: 'item',
  25. // url: '/arsDashboard',
  26. // icon: icons.DashboardOutlined,
  27. // breadcrumbs: false
  28. // }
  29. ]
  30. };
  31. export default dashboard;