19 lines
238 B
TypeScript
19 lines
238 B
TypeScript
"use client";
|
|
|
|
import EngagementPage from "@/components/dashboard/engagement";
|
|
|
|
|
|
|
|
|
|
|
|
export default function EngagementDashboard() {
|
|
return (
|
|
|
|
|
|
<div className="p-6">
|
|
<EngagementPage/>
|
|
|
|
</div>
|
|
|
|
);
|
|
} |