15 lines
248 B
TypeScript
15 lines
248 B
TypeScript
"use client";
|
|
|
|
import EngagementPage from "@/components/dashboard/overview/engagement";
|
|
|
|
export default function EngagementDashboard() {
|
|
return (
|
|
|
|
|
|
<div className="p-8 mx-3">
|
|
<EngagementPage/>
|
|
|
|
</div>
|
|
|
|
);
|
|
} |