mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 13:20:31 +00:00
14 lines
308 B
TypeScript
14 lines
308 B
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
|
|
const PaymentReceivedDeleteAlert = React.lazy(
|
|
() => import('@/containers/Alerts/PaymentReceived/PaymentReceivedDeleteAlert'),
|
|
);
|
|
|
|
/**
|
|
* PaymentReceives alert.
|
|
*/
|
|
export default [
|
|
{ name: 'payment-received-delete', component: PaymentReceivedDeleteAlert },
|
|
];
|