14 lines
256 B
TypeScript
14 lines
256 B
TypeScript
"use client";
|
|
|
|
import PropertyManagerPortal from "@/components/dashboard/propertyManager";
|
|
|
|
export default function EngagementDashboard() {
|
|
return (
|
|
|
|
|
|
<div className="p-8 mx-3">
|
|
<PropertyManagerPortal/>
|
|
</div>
|
|
|
|
);
|
|
} |