Files
danak-admin/src/pages/taskmanager/components/task-detail/attachment/TaskDetailAttachmentPopover.tsx
T
hamid zarghami 9c6aa47cf7
deploy to danak / build_and_deploy (push) Has been cancelled
Setting design
2026-06-17 16:14:18 +03:30

14 lines
420 B
TypeScript

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<Props> = ({ onClose, onSubmit }) => {
return <TaskDetailAttachmentForm onClose={onClose} onSubmit={onSubmit} />;
};
export default TaskDetailAttachmentPopover;