|
- // assets
- import { DashboardOutlined } from '@ant-design/icons';
-
- // icons
- const icons = {
- DashboardOutlined
- };
-
- // ==============================|| MENU ITEMS - DASHBOARD ||============================== //
-
- const dashboard = {
- id: 'group-dashboard',
- title: 'Navigation',
- type: 'group',
- children: [
- {
- id: 'dashboard',
- title: 'Dashboard',
- type: 'item',
- url: '/dashboard',
- icon: icons.DashboardOutlined,
- breadcrumbs: false
- },
- // {
- // id: 'arsdashboard',
- // title: 'ARS Dashboard',
- // type: 'item',
- // url: '/arsDashboard',
- // icon: icons.DashboardOutlined,
- // breadcrumbs: false
- // }
- ]
- };
-
- export default dashboard;
|