14 lines
247 B
TypeScript
14 lines
247 B
TypeScript
"use client"
|
|
|
|
import InventoryPortal from "@/components/dashboard/operations/inventory";
|
|
export default function InventoryPage() {
|
|
return (
|
|
|
|
|
|
<div className="p-6 mx-2">
|
|
<InventoryPortal/>
|
|
|
|
</div>
|
|
|
|
);
|
|
} |