diff options
author | Adrián Oliva <adrian.oliva@cimat.mx> | 2023-05-18 13:53:06 -0600 |
---|---|---|
committer | Adrián Oliva <adrian.oliva@cimat.mx> | 2023-05-18 13:53:06 -0600 |
commit | 8cb67965e363a9ea602a51d6bdee1c4d1e067c54 (patch) | |
tree | 7699d6e7a2a3026051c37b491ca1cf6941e0771c /src/ToDo.jsx | |
parent | 39d23e482e2909b80753202d45a12527249c37cf (diff) | |
download | ToDo-App-FE-8cb67965e363a9ea602a51d6bdee1c4d1e067c54.tar.gz ToDo-App-FE-8cb67965e363a9ea602a51d6bdee1c4d1e067c54.zip |
Now we can change the done state.
Diffstat (limited to 'src/ToDo.jsx')
-rw-r--r-- | src/ToDo.jsx | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/src/ToDo.jsx b/src/ToDo.jsx index f6eb68c..1dbfad7 100644 --- a/src/ToDo.jsx +++ b/src/ToDo.jsx @@ -2,6 +2,7 @@ import React, { useState } from "react"; import { useSelector, useDispatch } from "react-redux"; import { add_todo, + change_done, select_todos, select_last_index, } from "./features/todo/reducer"; @@ -186,6 +187,7 @@ export function NewToDo() { export function ListToDos() { const my_todos = useSelector(select_todos); + const dispatch = useDispatch(); return ( <div className="container"> @@ -209,7 +211,14 @@ export function ListToDos() { type="checkbox" checked={item.done} id="flexCheckChecked" - disabled + onChange={(e) => + dispatch( + change_done({ + id: item.id, + done: e.target.checked, + }) + ) + } ></input> </div> </th> |