mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-15 20:30:33 +00:00
14 lines
314 B
JavaScript
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>
|
|
);
|
|
}
|