feat(FE-195): create Expense page

This commit is contained in:
ValdiANS
2025-10-31 14:25:01 +07:00
parent e708911429
commit c72befb5b4
+11
View File
@@ -0,0 +1,11 @@
import ExpensesTable from '@/components/pages/expense/ExpensesTable';
const Expense = () => {
return (
<section className='w-full p-4'>
<ExpensesTable />
</section>
);
};
export default Expense;