feat(FE-208,212): add Purchase and PurchaseTable components for managing purchase requests

This commit is contained in:
rstubryan
2025-11-04 10:51:12 +07:00
parent 7c9c7eac10
commit ef339e128d
2 changed files with 457 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
import PurchaseTable from '@/components/pages/purchase/PurchaseTable';
const Purchase = () => {
return (
<section className='w-full p-4'>
<PurchaseTable />
</section>
);
};
export default Purchase;