WIP/customers

This commit is contained in:
elforjani3
2020-06-14 13:27:36 +02:00
parent 4d1dd14f8d
commit e20c912a3d
17 changed files with 544 additions and 42 deletions

View File

@@ -141,4 +141,30 @@ export default [
}),
breadcrumb: 'Exchange Rates',
},
{
path: `/customers/:id/edit`,
component: LazyLoader({
// loader: () => import(),
}),
breadcrumb: 'Edit Customer',
},
{
path: `/customers/new`,
component: LazyLoader({
loader: () => import('containers/Customers/Customer'),
}),
breadcrumb: 'New Customer',
},
// Customers
{
path: `/customers`,
component: LazyLoader({
// loader: () => import(''),
}),
breadcrumb: 'Customers',
},
];