Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
brillout committed Sep 7, 2022
1 parent bec964d commit 03fa87a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/vite-plugin-ssr/pages/index/TodoList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ function TodoList() {
setTodoItems(todoItems)
}}
>
<input type="text" onChange={(ev) => setDraft(ev.target.value)} value={draft} />{' '}
<input type="text" onChange={(ev) => setDraft(ev.target.value)} value={draft} autoFocus={true} />{' '}
<button type="submit">Add to-do</button>
</form>
</li>
Expand Down

0 comments on commit 03fa87a

Please sign in to comment.