feat(FE-333): adding feature overhead closing report

This commit is contained in:
randy-ar
2025-12-09 18:14:46 +07:00
parent 489815ecaf
commit 8c7640eb9c
7 changed files with 558 additions and 38 deletions
@@ -0,0 +1,19 @@
import ClosingOverheadTable from '@/components/pages/closing/ClosingOverheadTable';
interface ClosingOverheadTabContentProps {
projectFlockId: number;
}
const ClosingOverheadTabContent = ({
projectFlockId,
}: ClosingOverheadTabContentProps) => {
return (
<div className='flex flex-col gap-4'>
{projectFlockId && (
<ClosingOverheadTable projectFlockId={projectFlockId} />
)}
</div>
);
};
export default ClosingOverheadTabContent;