mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
47 lines
1020 B
TypeScript
47 lines
1020 B
TypeScript
// @ts-nocheck
|
|
import React from 'react';
|
|
|
|
const VendorCreditDeleteAlert = React.lazy(
|
|
() => import('@/containers/Alerts/VendorCeditNotes/VendorCreditDeleteAlert'),
|
|
);
|
|
|
|
const RefundVendorCreditDeleteAlert = React.lazy(
|
|
() =>
|
|
import(
|
|
'@/containers/Alerts/VendorCeditNotes/RefundVendorCreditDeleteAlert'
|
|
),
|
|
);
|
|
|
|
const OpenVendorCreditAlert = React.lazy(
|
|
() => import('@/containers/Alerts/VendorCeditNotes/VendorCreditOpenedAlert'),
|
|
);
|
|
|
|
const ReconcileVendorCreditDeleteAlert = React.lazy(
|
|
() =>
|
|
import(
|
|
'@/containers/Alerts/VendorCeditNotes/ReconcileVendorCreditDeleteAlert'
|
|
),
|
|
);
|
|
|
|
/**
|
|
* Vendor Credit notes alerts.
|
|
*/
|
|
export default [
|
|
{
|
|
name: 'vendor-credit-delete',
|
|
component: VendorCreditDeleteAlert,
|
|
},
|
|
{
|
|
name: 'vendor-credit-open',
|
|
component: OpenVendorCreditAlert,
|
|
},
|
|
{
|
|
name: 'refund-vendor-delete',
|
|
component: RefundVendorCreditDeleteAlert,
|
|
},
|
|
{
|
|
name: 'reconcile-vendor-delete',
|
|
component: ReconcileVendorCreditDeleteAlert,
|
|
},
|
|
];
|