mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-19 06:10:31 +00:00
Merge remote-tracking branch 'origin/customers'
This commit is contained in:
@@ -151,7 +151,6 @@ export default [
|
||||
}),
|
||||
breadcrumb: 'Exchange Rates',
|
||||
},
|
||||
|
||||
// Expenses
|
||||
{
|
||||
path: `/expenses/new`, // expenses/
|
||||
@@ -175,4 +174,27 @@ export default [
|
||||
}),
|
||||
breadcrumb: 'Expenses List',
|
||||
},
|
||||
{
|
||||
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',
|
||||
},
|
||||
];
|
||||
|
||||
Reference in New Issue
Block a user