14 lines
529 B
TypeScript
14 lines
529 B
TypeScript
import { DashboardPlaceholder } from "@/components/placeholders";
|
|
import { ShellPage } from "@/components/page-templates";
|
|
import { getDashboardData } from "@/lib/platform-data";
|
|
|
|
export default async function AgentProductivityReportPage() {
|
|
const data = await getDashboardData();
|
|
|
|
return (
|
|
<ShellPage shell="admin" title="Agent Productivity Report" description="Perbandingan performa agent dalam satu tenant.">
|
|
<DashboardPlaceholder stats={data.stats} priorityQueue={data.priorityQueue} />
|
|
</ShellPage>
|
|
);
|
|
}
|