Files
bigcapital/packages/webapp/src/containers/Sales/PaymentReceives/PaymentReceiveAlerts.tsx
2023-02-03 01:02:31 +02:00

14 lines
304 B
TypeScript

// @ts-nocheck
import React from 'react';
const PaymentReceiveDeleteAlert = React.lazy(
() => import('@/containers/Alerts/PaymentReceives/PaymentReceiveDeleteAlert'),
);
/**
* PaymentReceives alert.
*/
export default [
{ name: 'payment-receive-delete', component: PaymentReceiveDeleteAlert },
];