mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 13:20:31 +00:00
18 lines
428 B
TypeScript
18 lines
428 B
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
|
|
const ReceiptDeleteAlert = React.lazy(
|
|
() => import('@/containers/Alerts/Receipts/ReceiptDeleteAlert'),
|
|
);
|
|
const ReceiptCloseAlert = React.lazy(
|
|
() => import('@/containers/Alerts/Receipts/ReceiptCloseAlert'),
|
|
);
|
|
|
|
/**
|
|
* Receipts alerts.
|
|
*/
|
|
export default [
|
|
{ name: 'receipt-delete', component: ReceiptDeleteAlert },
|
|
{ name: 'receipt-close', component: ReceiptCloseAlert },
|
|
];
|