feat: bill detail.

This commit is contained in:
elforjani3
2021-08-24 18:47:23 +02:00
parent dd018d6bc9
commit aa6769c011
6 changed files with 203 additions and 7 deletions

View File

@@ -0,0 +1,14 @@
import React from 'react';
import BillDetailActionsBar from './BillDetailActionsBar';
import BillDetailHeader from './BillDetailHeader';
import BillDetailTable from './BillDetailTable';
export default function BillDetailTab() {
return (
<div>
<BillDetailActionsBar />
<BillDetailHeader />
<BillDetailTable />
</div>
);
}