In my react project, my purpose is removing item when I click the trash icon. I tried to reach li
elements using parentNode
or parentElements
but when I do this whenever I click the trash button console shows me different parent elements. Sometimes shows me li
but sometimes icons
div
. I couldn't understand thats why
const removeItem = (item) => {
const liITem = item.target.parentNode.parentNode.parentNode;
console.log(liITem);
//liITem.remove();
};
return (
<Container>
<ToDoForm onSubmit={addTodo} />
<ul className="items">
{todos.map((todo) => (
<li className="item" key={todo.id}>
{todo.text}
<div className="icons">
<button className="icon">
<AiFillEdit />
</button>
<button className="icon">
<BsFillTrashFill onClick={removeItem} />
</button>
</div>
</li>
))}
</ul>
</Container>
);
You can pass the id of the item you want to remove.