Files
KAFM-Project/app/dashboard/overview/serviceEngineer/page.tsx

14 lines
251 B
TypeScript

"use client";
import ServiceEngineerPortal from "@/components/dashboard/serviceEngineer";
export default function EngagementDashboard() {
return (
<div className="p-6">
<ServiceEngineerPortal/>
</div>
);
}