Files
whatsapp-inbox-platform/app/reports/response-time/page.tsx
Wira Basalamah adde003fba
Some checks failed
CI - Production Readiness / Verify (push) Has been cancelled
chore: initial project import
2026-04-21 09:29:29 +07:00

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>
);
}