feat(FE-43): create Master Data Warehouse page

This commit is contained in:
ValdiANS
2025-10-05 16:06:51 +07:00
parent c1bc7beb4a
commit 70bdfc3b43
+11
View File
@@ -0,0 +1,11 @@
import WarehousesTable from '@/components/pages/master-data/warehouse/WarehousesTable';
const Warehouse = () => {
return (
<section className='w-full p-4'>
<WarehousesTable />
</section>
);
};
export default Warehouse;