Table component is added and visitor management screen is added

This commit is contained in:
2026-07-23 12:50:44 +05:30
parent 89e93366e1
commit 1993d91319
7 changed files with 1204 additions and 857 deletions

View File

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