16 lines
270 B
TypeScript
16 lines
270 B
TypeScript
"use client"
|
|
|
|
import VistiorManagementPortal from "@/components/dashboard/workplace/visitorManagement";
|
|
|
|
|
|
export default function VisitorPage() {
|
|
return (
|
|
|
|
|
|
<div className="p-6 mx-2">
|
|
<VistiorManagementPortal/>
|
|
|
|
</div>
|
|
|
|
);
|
|
} |