Browse Source

conflict

pull/2/head
bnu 2 years ago
parent
commit
dd2372a84b
  1. 42
      src/routes.js

42
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;

Loading…
Cancel
Save