mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 20:30:33 +00:00
17 lines
397 B
JavaScript
17 lines
397 B
JavaScript
import React from 'react';
|
|
|
|
const ReceiptDeleteAlert = React.lazy(() =>
|
|
import('../../Alerts/Receipts/ReceiptDeleteAlert'),
|
|
);
|
|
const ReceiptCloseAlert = React.lazy(() =>
|
|
import('../../Alerts/Receipts/ReceiptCloseAlert'),
|
|
);
|
|
|
|
/**
|
|
* Receipts alerts.
|
|
*/
|
|
export default [
|
|
{ name: 'receipt-delete', component: ReceiptDeleteAlert },
|
|
{ name: 'receipt-close', component: ReceiptCloseAlert },
|
|
];
|