refactor: Payment Receives alerts.

This commit is contained in:
elforjani3
2021-01-27 14:56:27 +02:00
parent 963f68a640
commit 216eef889b
3 changed files with 113 additions and 70 deletions

View File

@@ -0,0 +1,13 @@
import React from 'react';
import PaymentReceiveDeleteAlert from 'containers/Alerts/PaymentReceives/PaymentReceiveDeleteAlert';
/**
* PaymentReceives alert.
*/
export default function EstimatesAlerts() {
return (
<div>
<PaymentReceiveDeleteAlert name={'payment-receive-delete'} />
</div>
);
}