14 lines
524 B
TypeScript
14 lines
524 B
TypeScript
import { DashboardPlaceholder } from "@/components/placeholders";
|
|
import { ShellPage } from "@/components/page-templates";
|
|
import { getDashboardData } from "@/lib/platform-data";
|
|
|
|
export default async function ResponseTimeReportPage() {
|
|
const data = await getDashboardData();
|
|
|
|
return (
|
|
<ShellPage shell="admin" title="Response Time Report" description="KPI, chart, dan table untuk performa response time.">
|
|
<DashboardPlaceholder stats={data.stats} priorityQueue={data.priorityQueue} />
|
|
</ShellPage>
|
|
);
|
|
}
|