"use client"; import { Sparkles } from "lucide-react"; export function ModeWorkspace({ children, aiPanel, aiTitle = "AI 解读", }: { children: React.ReactNode; aiPanel: React.ReactNode; aiTitle?: string; }) { return (
{children}
); }