import { type FC } from "react"; import TaskDetailAttachmentForm from "./TaskDetailAttachmentForm"; type Props = { onClose: () => void; onSubmit: (data: { file?: File; title: string; linkId: string }) => void; }; const TaskDetailAttachmentPopover: FC = ({ onClose, onSubmit }) => { return ; }; export default TaskDetailAttachmentPopover;