'use client'; import { CloseIcon, SettingsIcon } from './Icons'; import { Dialog, DialogContent, DialogTitle, } from '@/components/ui/dialog'; export default function HoldingActionModal({ fund, onClose, onAction, hasHistory }) { const handleOpenChange = (open) => { if (!open) { onClose?.(); } }; return ( 持仓操作
持仓操作
{fund?.name}
#{fund?.code}
); }