mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-19 22:30:31 +00:00
13 lines
281 B
JavaScript
13 lines
281 B
JavaScript
import React from 'react';
|
|
|
|
const PaymentReceiveDeleteAlert = React.lazy(() =>
|
|
import('../../Alerts/PaymentReceives/PaymentReceiveDeleteAlert'),
|
|
);
|
|
|
|
/**
|
|
* PaymentReceives alert.
|
|
*/
|
|
export default [
|
|
{ name: 'payment-receive-delete', component: PaymentReceiveDeleteAlert },
|
|
];
|