mirror of
https://gitlab.com/mbugroup/lti-web-client.git
synced 2026-05-20 13:32:00 +00:00
12 lines
266 B
TypeScript
12 lines
266 B
TypeScript
import InventoryProductTable from '@/components/pages/inventory/product/InventoryProductTable';
|
|
|
|
const InventoryProductPage = () => {
|
|
return (
|
|
<div className='size-full'>
|
|
<InventoryProductTable />
|
|
</div>
|
|
);
|
|
};
|
|
|
|
export default InventoryProductPage;
|