mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-21 13:55:45 +00:00
12 lines
239 B
TypeScript
12 lines
239 B
TypeScript
import WarehousesTable from '@/components/pages/master-data/warehouse/WarehousesTable';
|
|
|
|
const Warehouse = () => {
|
|
return (
|
|
<section className='w-full p-4'>
|
|
<WarehousesTable />
|
|
</section>
|
|
);
|
|
};
|
|
|
|
export default Warehouse;
|