We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d332fca commit 6a011f2Copy full SHA for 6a011f2
example-hooks/ts/components/TodoListFooter.tsx
@@ -66,7 +66,11 @@ const TodoListFooter = (props: Props) => {
66
{numRemainingTodos === 1 ? "" : "s"} left
67
</span>
68
<label>
69
- <input type="checkbox" value={props.append} onChange={props.onSetAppend}/>
+ <input
70
+ type="checkbox"
71
+ checked={props.append}
72
+ onChange={props.onSetAppend}
73
+ />
74
Append
75
</label>
76
{numCompletedTodos > 0 && (
0 commit comments