Skip to content

Commit

Permalink
Update adding-typed-actions.md
Browse files Browse the repository at this point in the history
  • Loading branch information
jorasso authored and ctrlplusb committed Oct 1, 2019
1 parent 5963568 commit c92ff7c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ function AddTodo() {
return (
<>
<input text={text} onChange={e => setText(e.target.value)} type="text />
<input value={text} onChange={e => setText(e.target.value)} type="text" />
<button onClick={onButtonClick}>Add Todo</button>
</>
);
Expand Down

0 comments on commit c92ff7c

Please sign in to comment.