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