fix(FE-188): rename to ExpenseRequestForm

This commit is contained in:
ValdiANS
2025-11-04 15:46:08 +07:00
parent 17c316c4af
commit a12ae51f3a
+2 -2
View File
@@ -1,9 +1,9 @@
import ExpenseForm from '@/components/pages/expense/form/ExpenseForm'; import ExpenseRequestForm from '@/components/pages/expense/form/ExpenseRequestForm';
const AddExpense = () => { const AddExpense = () => {
return ( return (
<div className='w-full p-4 flex flex-row justify-center'> <div className='w-full p-4 flex flex-row justify-center'>
<ExpenseForm /> <ExpenseRequestForm />
</div> </div>
); );
}; };