mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-17 21:30:31 +00:00
14 lines
343 B
JavaScript
14 lines
343 B
JavaScript
import React from 'react';
|
|
import BillLocatedLandedCostDeleteAlert from 'containers/Alerts/Bills/BillLocatedLandedCostDeleteAlert';
|
|
|
|
/**
|
|
* Bill drawer alert.
|
|
*/
|
|
export default function BillDrawerAlerts() {
|
|
return (
|
|
<div class="bills-alerts">
|
|
<BillLocatedLandedCostDeleteAlert name="bill-located-cost-delete" />
|
|
</div>
|
|
);
|
|
}
|