Update tutorial.md, Taking Turns (#8058)

This commit is contained in:
Andrew Poliakov
2016-10-23 15:49:55 +03:00
committed by Dan Abramov
parent 25a1e5acae
commit b2f368c6f4

View File

@@ -254,7 +254,7 @@ You'll need to change `this.props` to `props` both times it appears. Many compon
An obvious defect in our game is that only X can play. Let's fix that.
Let's default the first move to be by 'X'. Modify our starting state in our `Game` constructor.
Let's default the first move to be by 'X'. Modify our starting state in our `Board` constructor.
```javascript
class Board extends React.Component {