"use client" import { useState } from "react" import { Button } from "@/components/ui/button" import { Dialog, DialogContent, DialogDescription, DialogFooter, DialogHeader, DialogTitle, DialogTrigger, } from "@/components/ui/dialog" import { Select, SelectContent, SelectItem, SelectTrigger, SelectValue } from "@/components/ui/select" import { Label } from "@/components/ui/label" import { FileDown } from "lucide-react" interface ExportCardsDialogProps { songId: string } export function ExportCardsDialog({ songId }: ExportCardsDialogProps) { const [open, setOpen] = useState(false) const [format, setFormat] = useState("csv") return ( 导出卡牌ID 选择导出格式并下载歌曲 {songId} 的所有卡牌ID。
) }