feat(admin): add reports admin page with searchable, paginated table

This commit is contained in:
2026-04-28 08:04:17 +08:00
parent 2ab4ac5ebc
commit a109e47f33
2 changed files with 487 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
import type { Metadata } from "next"
import { ReportsClient } from "./reports-client"
export const metadata: Metadata = {
title: "Reports",
}
export default function ReportsPage() {
return <ReportsClient />
}