refactor(FE): Refactor component and file names for consistency

This commit is contained in:
rstubryan
2026-02-18 16:15:27 +07:00
parent 2f5d518e15
commit 42cc0f2661
17 changed files with 94 additions and 100 deletions
@@ -0,0 +1,13 @@
import FinanceClosingTable from '@/components/pages/closing/table/FinanceClosingTable';
const FinanceClosingTab = ({ projectFlockId }: { projectFlockId: number }) => {
return (
<div className='flex flex-col gap-4'>
{projectFlockId && (
<FinanceClosingTable projectFlockId={projectFlockId} />
)}
</div>
);
};
export default FinanceClosingTab;