2021-07-12 09:41:26 +05:30
|
|
|
import React from 'react';
|
|
|
|
|
|
|
|
|
|
const Dashboard = React.lazy(() => import('./views/dashboard/Dashboard'));
|
|
|
|
|
const BoxDisplacemen = React.lazy(() => import('./views/BoxDisplacemen/index'));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const routes = [
|
|
|
|
|
{ path: '/', exact: true, name: 'Home' },
|
|
|
|
|
{ path: '/dashboard', name: 'Dashboard', component: Dashboard },
|
2021-07-12 09:54:25 +05:30
|
|
|
{ path: '/reports', exact: true, name: 'Reports', component: BoxDisplacemen },
|
2021-07-12 09:41:26 +05:30
|
|
|
];
|
|
|
|
|
|
|
|
|
|
export default routes;
|