updates on the dispatch page

This commit is contained in:
2026-05-28 19:37:04 +05:30
parent 8cc7cc75f9
commit 39b562ddb5
8 changed files with 3937 additions and 1714 deletions

View File

@@ -49,6 +49,7 @@ const Riders = Loadable(lazy(() => import('pages/nearle/riders/riders')));
const Createrider = Loadable(lazy(() => import('pages/nearle/riders/createrider')));
const EditRider = Loadable(lazy(() => import('pages/nearle/riders/editRider')));
const Dispatch = Loadable(lazy(() => import('pages/nearle/dispatch/Dispatch')));
const DispatchPreview = Loadable(lazy(() => import('pages/nearle/dispatch/Preview')));
// ==============================|| MAIN ROUTING ||============================== //
@@ -170,6 +171,10 @@ const MainRoutes = {
{
path: 'dispatch',
element: <Dispatch />
},
{
path: 'dispatch/preview',
element: <DispatchPreview />
}
]
},