diff --git a/src/pages/taskmanager/components/Column.tsx b/src/pages/taskmanager/components/Column.tsx index e2dff07..ccd5b96 100644 --- a/src/pages/taskmanager/components/Column.tsx +++ b/src/pages/taskmanager/components/Column.tsx @@ -1,5 +1,5 @@ -import { AddCircle, More } from "iconsax-react"; -import { Children, type FC, type ReactNode } from "react"; +import { Add, AddCircle, CloseCircle, More } from "iconsax-react"; +import { Children, useState, type FC, type ReactNode } from "react"; type Props = { title: string; @@ -7,6 +7,7 @@ type Props = { }; const Column: FC = ({ title, children }) => { + const [isAdding, setIsAdding] = useState(false); const hasTasks = Children.count(children) > 0; return ( @@ -18,10 +19,42 @@ const Column: FC = ({ title, children }) => {
{children}
- + {isAdding ? ( +
+ +
+ + +
+
+ ) : ( + + )} ); };