page.tsx 234 B

1234567
  1. import { DashboardShell } from "@/components/dashboard/DashboardShell";
  2. export default function AgentDashboardPage() {
  3. // 页面采用纯客户端渲染,所有业务逻辑由 DashboardShell 承担
  4. return <DashboardShell />;
  5. }