feat: delete transaction.

This commit is contained in:
elforjani13
2021-10-24 14:34:30 +02:00
parent fc67d56d45
commit c5783896ad
6 changed files with 147 additions and 8 deletions

View File

@@ -0,0 +1,14 @@
import React from 'react';
import AccountDeleteTransactionAlert from '../../Alerts/CashFlow/AccountDeleteTransactionAlert';
/**
* Account transaction alert.
*/
export default function AccountTransactionsAlerts() {
return (
<div>
<AccountDeleteTransactionAlert name={'account-transaction-delete'} />
</div>
);
}