Lifting State Up more legible (#8691)

(cherry picked from commit b8f0522cc6)
This commit is contained in:
John Longanecker
2017-02-02 13:25:22 +00:00
committed by Dan Abramov
parent 74b8ab5db1
commit 952b7dec91
+2
View File
@@ -187,6 +187,8 @@ Now we're passing down two props from Board to Square: `value` and `onClick`. Th
```javascript
<button className="square" onClick={() => this.props.onClick()}>
{this.props.value}
</button>
```
This means that when the square is clicked, it calls the onClick function that was passed by the parent. The `onClick` doesn't have any special meaning here, but it's popular to name handler props starting with `on` and their implementations with `handle`. Try clicking a square you should get an error because we haven't defined `handleClick` yet. Add it to the Board class: