16 lines
250 B
TypeScript
16 lines
250 B
TypeScript
"use client"
|
|
|
|
import VendorServicePortal from "@/components/dashboard/vendorService";
|
|
|
|
|
|
export default function InventoryPage() {
|
|
return (
|
|
|
|
|
|
<div className="p-8 mx-3">
|
|
<VendorServicePortal/>
|
|
|
|
</div>
|
|
|
|
);
|
|
} |