diff --git a/src/routes.js b/src/routes.js index 3b20da4..282347f 100644 --- a/src/routes.js +++ b/src/routes.js @@ -74,9 +74,9 @@ const ScheduleShift = React.lazy(() => import("./views/SimproV2/ScheduleShift") ); const ChecklistK3 = React.lazy(() => import("./views/SimproV2/ChecklistK3")); -const DashboardPMO = React.lazy(() => import("./views/DashboardPMO")); -const DashboardProject = React.lazy(() => import("./views/DashboardProject")); -const DashboardSecurity = React.lazy(() => import("./views/DashboardSecurity")); +// const DashboardPMO = React.lazy(() => import("./views/DashboardPMO")); +// const DashboardProject = React.lazy(() => import("./views/DashboardProject")); +// const DashboardSecurity = React.lazy(() => import("./views/DashboardSecurity")); // const PlanningVsRealisasi = React.lazy(() => import('./views/Master/PlanningVsRealisasi')); const routes = [ @@ -256,24 +256,24 @@ const routes = [ name: "Checklist K3", component: ChecklistK3, }, - { - path: "/dashboard-pmo", - exact: true, - name: "Dashboard PMO", - component: DashboardPMO, - }, - { - path: "/dashboard-security", - exact: true, - name: "Dashboard Security", - component: DashboardSecurity, - }, - { - path: "/dashboard-project", - exact: true, - name: "Dashboard Project", - component: DashboardProject, - }, + // { + // path: "/dashboard-pmo", + // exact: true, + // name: "Dashboard PMO", + // component: DashboardPMO, + // }, + // { + // path: "/dashboard-security", + // exact: true, + // name: "Dashboard Security", + // component: DashboardSecurity, + // }, + // { + // path: "/dashboard-project", + // exact: true, + // name: "Dashboard Project", + // component: DashboardProject, + // }, ]; export default routes;