14 lines
257 B
TypeScript
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>
|
|
|
|
);
|
|
} |