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

14 lines
257 B
TypeScript

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