mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 20:30:33 +00:00
16 lines
305 B
JavaScript
16 lines
305 B
JavaScript
import React from 'react';
|
|
|
|
const AccountDeleteTransactionAlert = React.lazy(() =>
|
|
import('../../Alerts/CashFlow/AccountDeleteTransactionAlert'),
|
|
);
|
|
|
|
/**
|
|
* Account transaction alert.
|
|
*/
|
|
export default [
|
|
{
|
|
name: 'account-transaction-delete',
|
|
component: AccountDeleteTransactionAlert,
|
|
},
|
|
];
|