Files
bigcapital/packages/webapp/src/containers/Purchases/PaymentsMade/PaymentsMadeAlerts.tsx
2024-08-13 19:10:09 +02:00

11 lines
255 B
TypeScript

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