This commit is contained in:
David Arranz 2025-11-04 17:02:42 +01:00
parent 5adeaa0dc7
commit f31664dca4

View File

@ -10,7 +10,9 @@ const CustomersLayout = lazy(() =>
const CustomersList = lazy(() => import("./pages").then((m) => ({ default: m.CustomersListPage })));
const CustomerView = lazy(() => import("./pages").then((m) => ({ default: m.CustomerViewPage })));
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[] => {
return [