mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 22:00:31 +00:00
23 lines
607 B
TypeScript
23 lines
607 B
TypeScript
// @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 },
|
|
];
|