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

14 lines
266 B
TypeScript

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