Files
bigcapital/client/src/containers/Sales/PaymentReceive/PaymentReceiveAlerts.js
2021-01-27 14:56:27 +02:00

14 lines
314 B
JavaScript

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>
);
}