refactor(FE): Refactor FinanceTable and simplify Finance page structure

This commit is contained in:
rstubryan
2026-02-27 11:14:13 +07:00
parent b14bc00af4
commit d3ce60d3ba
2 changed files with 446 additions and 265 deletions
+1 -6
View File
@@ -3,12 +3,7 @@
import FinanceTable from '@/components/pages/finance/FinanceTable';
const Finance = () => {
return (
<section className='size-full p-6'>
<div className='flex flex-row gap-4'></div>
<FinanceTable />
</section>
);
return <FinanceTable />;
};
export default Finance;