import { FileIcon, X, Plus } from "lucide-react"; import { Button } from "@/components/ui/button"; import { useBoardStore } from "@/stores/board-store"; import type { Attachment } from "@/types/board"; interface AttachmentSectionProps { cardId: string; attachments: Attachment[]; } export function AttachmentSection({ cardId, attachments, }: AttachmentSectionProps) { const removeAttachment = useBoardStore((s) => s.removeAttachment); function handleAdd() { // Placeholder: Tauri file dialog will be wired in a later task console.log("Add attachment (file dialog not yet wired)"); } return (
No attachments
)}