Files
bigcapital/src/containers/Sales/PaymentReceives/PaymentReceiveAlerts.js
2021-10-31 13:13:38 +02:00

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 },
];