Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/components/AddTodo/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const AddTodo = ({ value, setValue, onSubmit }) => {
/>
<div>
<button className="add-todo-button" disabled={isButtonDisable}>
<img src={plus} alt="plus" />
<img src={plus} alt="Add Todo" />
</button>
</div>
</form>
Expand Down
4 changes: 2 additions & 2 deletions src/components/TodoList/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ const TodoList = ({ task, checked: isCheck, setChecked, onRemove }) => {
className={classNames("todo-checklist", { checked: isCheck })}
onClick={setChecked}
>
<img src={check} alt="check" />
<img src={check} alt="Check Todo" />
</div>
</div>
<span className="todo-text">{task}</span>
<div>
<div className="todo-remove" onClick={onRemove}>
<img src={trash} alt="remove" />
<img src={trash} alt="Remove Todo" />
</div>
</div>
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/containers/TodoLists/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const TodoLists = () => {
return (
<div className="todo-lists">
<div className="todo-empty">
<img src={noData} alt="No Data" />
<img src={noData} alt="Empty Tasks" />
<p>Empty Tasks :(</p>
</div>
</div>
Expand Down