mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-18 22:00:31 +00:00
16 lines
404 B
JavaScript
16 lines
404 B
JavaScript
import React from 'react';
|
|
import InvoiceDeleteAlert from 'containers/Alerts/Invoices/InvoiceDeleteAlert';
|
|
import InvoiceDeliverAlert from 'containers/Alerts/Invoices/InvoiceDeliverAlert';
|
|
|
|
/**
|
|
* Invoices alert.
|
|
*/
|
|
export default function ItemsAlerts() {
|
|
return (
|
|
<div>
|
|
<InvoiceDeleteAlert name={'invoice-delete'} />
|
|
<InvoiceDeliverAlert name={'invoice-deliver'} />
|
|
</div>
|
|
);
|
|
}
|