attachments list

This commit is contained in:
hamid zarghami
2026-06-17 16:33:01 +03:30
parent 9c6aa47cf7
commit 73d1ad3492
6 changed files with 141 additions and 1 deletions
@@ -1,6 +1,7 @@
import { type FC, useEffect, useState } from "react";
import DefaulModal from "../../../../components/DefaulModal";
import type { Task } from "../../types";
import AttachmentList from "./attachment/List";
import CheckLists from "./checklist/List";
import TaskDetailDescription from "./TaskDetailDescription";
import TaskDetailHeader from "./TaskDetailHeader";
@@ -43,6 +44,8 @@ const TaskDetailModal: FC<Props> = ({ open, task, statusLabel, onClose }) => {
<TaskDetailDescription value={description} onChange={setDescription} />
<AttachmentList />
<CheckLists />
</DefaulModal>
);