16 lines
258 B
TypeScript
16 lines
258 B
TypeScript
"use client"
|
|
|
|
import VendorServicePortal from "@/components/dashboard/operations/vendorService";
|
|
|
|
|
|
export default function VendorPage() {
|
|
return (
|
|
|
|
|
|
<div className="p-6 mx-2">
|
|
<VendorServicePortal/>
|
|
|
|
</div>
|
|
|
|
);
|
|
} |