Files
lti-web-client/src/app/inventory/product/page.tsx
T

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;