diff --git a/src/Components/TodoList.jsx b/src/Components/TodoList.jsx index a3f8bffe..01aeebfc 100644 --- a/src/Components/TodoList.jsx +++ b/src/Components/TodoList.jsx @@ -2,7 +2,9 @@ import React, { useState } from 'react'; import './TodoList.css'; const TodoList = () => { - + const [todos,setTodos]=useState([]); + const [headingInput,setHeadingInput]=useState(''); + const [listInputs,setListInputs]=useState({}); return ( <>