mirror of
https://github.com/bigcapitalhq/bigcapital.git
synced 2026-02-16 12:50:38 +00:00
22 lines
454 B
JavaScript
22 lines
454 B
JavaScript
import React from 'react';
|
|
|
|
import { CommercialDocBox } from 'components';
|
|
|
|
import BillDetailHeader from './BillDetailHeader';
|
|
import BillDetailTable from './BillDetailTable';
|
|
import { BillDetailFooter } from './BillDetailFooter';
|
|
|
|
|
|
/**
|
|
* Bill detail panel tab.
|
|
*/
|
|
export default function BillDetailTab() {
|
|
return (
|
|
<CommercialDocBox>
|
|
<BillDetailHeader />
|
|
<BillDetailTable />
|
|
<BillDetailFooter />
|
|
</CommercialDocBox>
|
|
);
|
|
}
|