refactor(FE): Refactor folder structure for closing-related components

This commit is contained in:
rstubryan
2026-02-18 15:40:06 +07:00
parent d68bedf5ce
commit d085b18788
14 changed files with 14 additions and 14 deletions
@@ -0,0 +1,17 @@
import ClosingFinanceTable from '@/components/pages/closing/finance/ClosingFinanceTable';
const ClosingFinanceTabContent = ({
projectFlockId,
}: {
projectFlockId: number;
}) => {
return (
<div className='flex flex-col gap-4'>
{projectFlockId && (
<ClosingFinanceTable projectFlockId={projectFlockId} />
)}
</div>
);
};
export default ClosingFinanceTabContent;