import { Suspense } from "react"; import { AuditLogsListClient } from "@/features/admin/audit-logs/audit-logs-list-client"; import { ListPageSkeleton } from "@/shared/components/page-templates"; /** * 审计日志列表页(ARCHITECTURE.md §7.3 列表页 / §9.4 / §10 P5) * * Server Component 入口:仅负责 Suspense 边界包裹(useSearchParams 要求)。 * 业务逻辑在 AuditLogsListClient(client component)中。 * * 数据契约:auditLogs(filter, pagination) ❌ schema 无 → MSW 兜底(@contract-pending) * * 关联:ARCHITECTURE.md §5.3 / §5.4 / §7.3 / §9.4 / §10 P5 / §11.3 / §11.4 */ export default function AuditLogsListPage(): React.ReactElement { return ( }> ); }