42 lines
1.1 KiB
JavaScript
42 lines
1.1 KiB
JavaScript
import UploadDLockData from '../scenes/UploadDLockData';
|
|
import Home from '../scenes/Home';
|
|
import IncidentsReport from '../scenes/IncidentsReport';
|
|
import PracticeSummaryReport from '../scenes/PracticeSummaryReport';
|
|
|
|
export const mainMenuItems = [
|
|
{
|
|
id: 'home',
|
|
showInMenu: true,
|
|
title: 'Home',
|
|
url: '/',
|
|
component: Home,
|
|
},
|
|
{
|
|
id: 'practiceSummaryReport',
|
|
showInMenu: true,
|
|
title: 'Practice Summary Report',
|
|
url: '/practice-summary-report',
|
|
component: PracticeSummaryReport,
|
|
},
|
|
{
|
|
id: 'practiceSummaryReportWithMemberId',
|
|
showInMenu: false,
|
|
url: '/practice-summary-report/:memberId',
|
|
component: PracticeSummaryReport,
|
|
},
|
|
{
|
|
id: 'report',
|
|
showInMenu: true,
|
|
title: 'Incidents Report',
|
|
url: '/incidents-report',
|
|
component: IncidentsReport,
|
|
},
|
|
{
|
|
id: 'uploadDLockData',
|
|
showInMenu: true,
|
|
title: 'DLock',
|
|
url: '/dlock',
|
|
component: UploadDLockData,
|
|
},
|
|
];
|