import Link from "next/link"; import { Activity, ArrowLeft, RefreshCw } from "lucide-react"; export function AppShell({ children, onRefresh, showBack, toolbarLeading }: { children: React.ReactNode; onRefresh?: () => void; showBack?: boolean; toolbarLeading?: React.ReactNode; }) { return (
{showBack ? ( 返回 Dashboard ) : null}
ContentFind 可视化工作台
{toolbarLeading} 配置 Douyin V1 {onRefresh ? ( ) : null}
{children}
); }