Files
KAFM-Project/app/dashboard/workplace/visitorManagement/page.tsx

16 lines
262 B
TypeScript

"use client"
import VistiorManagementPortal from "@/components/dashboard/visitorManagement";
export default function InventoryPage() {
return (
<div className="p-8 mx-3">
<VistiorManagementPortal/>
</div>
);
}