From f9dd0035dbaafcae6230801cf31d2d1848ebb2d1 Mon Sep 17 00:00:00 2001 From: dickyindra Date: Mon, 20 Dec 2021 17:47:25 +0700 Subject: [PATCH] fix: change alt images --- src/components/AddTodo/index.js | 2 +- src/components/TodoList/index.js | 4 ++-- src/containers/TodoLists/index.js | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/components/AddTodo/index.js b/src/components/AddTodo/index.js index a48b5c4..3a26238 100644 --- a/src/components/AddTodo/index.js +++ b/src/components/AddTodo/index.js @@ -23,7 +23,7 @@ const AddTodo = ({ value, setValue, onSubmit }) => { />
diff --git a/src/components/TodoList/index.js b/src/components/TodoList/index.js index 279ca08..f15d8a3 100644 --- a/src/components/TodoList/index.js +++ b/src/components/TodoList/index.js @@ -13,13 +13,13 @@ const TodoList = ({ task, checked: isCheck, setChecked, onRemove }) => { className={classNames("todo-checklist", { checked: isCheck })} onClick={setChecked} > - check + Check Todo {task}
- remove + Remove Todo
diff --git a/src/containers/TodoLists/index.js b/src/containers/TodoLists/index.js index ba54bcb..8b49305 100644 --- a/src/containers/TodoLists/index.js +++ b/src/containers/TodoLists/index.js @@ -31,7 +31,7 @@ const TodoLists = () => { return (
- No Data + Empty Tasks

Empty Tasks :(