chore: initial project import
Some checks failed
CI - Production Readiness / Verify (push) Has been cancelled
Some checks failed
CI - Production Readiness / Verify (push) Has been cancelled
This commit is contained in:
13
app/reports/resolution/page.tsx
Normal file
13
app/reports/resolution/page.tsx
Normal file
@ -0,0 +1,13 @@
|
||||
import { DashboardPlaceholder } from "@/components/placeholders";
|
||||
import { ShellPage } from "@/components/page-templates";
|
||||
import { getDashboardData } from "@/lib/platform-data";
|
||||
|
||||
export default async function ResolutionReportPage() {
|
||||
const data = await getDashboardData();
|
||||
|
||||
return (
|
||||
<ShellPage shell="admin" title="Resolution Report" description="Resolution rate dan aging backlog.">
|
||||
<DashboardPlaceholder stats={data.stats} priorityQueue={data.priorityQueue} />
|
||||
</ShellPage>
|
||||
);
|
||||
}
|
||||
Reference in New Issue
Block a user