diff --git a/tutorial/tutorial.md b/tutorial/tutorial.md index 2aa369f6..bac325b5 100644 --- a/tutorial/tutorial.md +++ b/tutorial/tutorial.md @@ -393,7 +393,7 @@ Now when the square is clicked, it calls the `onClick` function that was passed 4. Board passed `onClick={() => this.handleClick(i)}` to Square, so, when called, it runs `this.handleClick(i)` on the Board. 5. We have not defined the `handleClick()` method on the Board yet, so the code crashes. -Note that `onClick` on the DOM `