import React, { useState } from "react"; import { FaTasks, FaRegListAlt } from "react-icons/fa"; import { FaPlus } from "react-icons/fa6"; import { TbChecklist } from "react-icons/tb"; function TaskDetailModal() { const [difficulty, setDifficulty] = useState(50); const [isChallengeChecked, setChallengeChecked] = useState(true); const [isImportantChecked, setImportantChecked] = useState(true); const handleChallengeChange = () => { setChallengeChecked(!isChallengeChecked); }; const handleImportantChange = () => { setImportantChecked(!isImportantChecked); }; const handleDifficultyChange = event => { setDifficulty(parseInt(event.target.value, 10)); }; return (
{/* Title */}

{}Title

Todo List

{/* Tags */}
{/* Description */}

Description

{/* Difficulty, Challenge and Importance */}
Easy Normal Hard Very Hard Devil
{/* Challenge Checkbox */}
{/* Important Checkbox */}
{/* Subtask */}

Subtasks

); } export default TaskDetailModal;