.
This commit is contained in:
parent
5adeaa0dc7
commit
f31664dca4
@ -10,7 +10,9 @@ const CustomersLayout = lazy(() =>
|
|||||||
const CustomersList = lazy(() => import("./pages").then((m) => ({ default: m.CustomersListPage })));
|
const CustomersList = lazy(() => import("./pages").then((m) => ({ default: m.CustomersListPage })));
|
||||||
const CustomerView = lazy(() => import("./pages").then((m) => ({ default: m.CustomerViewPage })));
|
const CustomerView = lazy(() => import("./pages").then((m) => ({ default: m.CustomerViewPage })));
|
||||||
const CustomerAdd = lazy(() => import("./pages").then((m) => ({ default: m.CustomerCreatePage })));
|
const CustomerAdd = lazy(() => import("./pages").then((m) => ({ default: m.CustomerCreatePage })));
|
||||||
const CustomerUpdate = lazy(() => import("./pages").then((m) => ({ default: m.CustomerUpdatePage })));
|
const CustomerUpdate = lazy(() =>
|
||||||
|
import("./pages").then((m) => ({ default: m.CustomerUpdatePage }))
|
||||||
|
);
|
||||||
|
|
||||||
export const CustomerRoutes = (params: ModuleClientParams): RouteObject[] => {
|
export const CustomerRoutes = (params: ModuleClientParams): RouteObject[] => {
|
||||||
return [
|
return [
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user