mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-20 23:00:34 +00:00
re-structure to monorepo.
This commit is contained in:
@@ -0,0 +1,22 @@
|
||||
// @ts-nocheck
|
||||
import React from 'react';
|
||||
|
||||
const InvoiceDeleteAlert = React.lazy(
|
||||
() => import('@/containers/Alerts/Invoices/InvoiceDeleteAlert'),
|
||||
);
|
||||
const InvoiceDeliverAlert = React.lazy(
|
||||
() => import('@/containers/Alerts/Invoices/InvoiceDeliverAlert'),
|
||||
);
|
||||
|
||||
const CancelBadDebtAlert = React.lazy(
|
||||
() => import('@/containers/Alerts/Invoices/CancelBadDebtAlert'),
|
||||
);
|
||||
|
||||
/**
|
||||
* Invoices alert.
|
||||
*/
|
||||
export default [
|
||||
{ name: 'invoice-delete', component: InvoiceDeleteAlert },
|
||||
{ name: 'invoice-deliver', component: InvoiceDeliverAlert },
|
||||
{ name: 'cancel-bad-debt', component: CancelBadDebtAlert },
|
||||
];
|
||||
Reference in New Issue
Block a user