This commit is contained in:
Malai Raja
2023-12-30 18:29:42 +05:30
parent 51e4ea978f
commit 3ce0086e3c
12 changed files with 2316 additions and 150 deletions

View File

@@ -18,6 +18,8 @@ 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 Client1 = Loadable(lazy(() => import('pages/nearle/clients/clients1')));
const Orders = Loadable(lazy(() => import('pages/nearle/orders/orders')));
const Details = Loadable(lazy(() => import('pages/nearle/orders/details')));
@@ -51,9 +53,13 @@ const MainRoutes = {
element: <Dashboard />
},
{
path: 'clients',
element: <Client />
path: 'customers',
element: <Client1 />
},
// {
// path: 'clients1',
// element: <Client1 />
// },
{
path: 'orders',
element: <Orders />
@@ -71,7 +77,7 @@ const MainRoutes = {
element: <Details />
},
{
path: 'clients/create',
path: 'customers/create',
element: <Createclient />
},