'use client'; import { motion, AnimatePresence } from 'framer-motion'; import { X } from 'lucide-react'; import WorkOffice from '@/components/workflow/work-office/work-office'; interface ScriptModalProps { isOpen: boolean; onClose: () => void; } export function ScriptModal({ isOpen, onClose }: ScriptModalProps) { return ( {isOpen && ( <> {/* 背景遮罩 */} {/* 弹窗内容 */} {/* 关闭按钮 */} {/* 内容区域 */} )} ); }