02122023
This commit is contained in:
@@ -17,6 +17,14 @@ const SamplePage = Loadable(lazy(() => import('pages/extra-pages/sample-page')))
|
||||
const Login = Loadable(lazy(() => import('pages/nearle/login')));
|
||||
const Dashboard = Loadable(lazy(() => import('pages/nearle/dashboard')));
|
||||
|
||||
const Client = Loadable(lazy(() => import('pages/nearle/clients/client')));
|
||||
const Orders = Loadable(lazy(() => import('pages/nearle/orders/orders')));
|
||||
const Accountsettings = Loadable(lazy(() => import('pages/nearle/accountsettings')));
|
||||
|
||||
const Createorder = Loadable(lazy(() => import('pages/nearle/orders/createorder')));
|
||||
const Createclient = Loadable(lazy(() => import('pages/nearle/clients/createclient')));
|
||||
|
||||
|
||||
|
||||
|
||||
// ==============================|| MAIN ROUTING ||============================== //
|
||||
@@ -40,6 +48,26 @@ const MainRoutes = {
|
||||
path: 'dashboard',
|
||||
element: <Dashboard />
|
||||
},
|
||||
{
|
||||
path: 'clients',
|
||||
element: <Client />
|
||||
},
|
||||
{
|
||||
path: 'orders',
|
||||
element: <Orders />
|
||||
},
|
||||
{
|
||||
path: 'accountsettings',
|
||||
element: <Accountsettings />
|
||||
},
|
||||
{
|
||||
path: 'orders/create',
|
||||
element: <Createorder />
|
||||
},
|
||||
{
|
||||
path: 'clients/create',
|
||||
element: <Createclient />
|
||||
},
|
||||
|
||||
]
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user