Fix indentation in tutorial (#8914)

(cherry picked from commit 9e3a31b2c6)
This commit is contained in:
Dan Abramov
2017-02-02 13:24:26 +00:00
parent 2d130bfba2
commit 4a2fad0d04
+2 -2
View File
@@ -295,8 +295,8 @@ Now X and O take turns. Next, change the "status" text in Board's `render` so th
```javascript
render() {
const status = 'Next player: ' + (this.state.xIsNext ? 'X' : 'O');
...
const status = 'Next player: ' + (this.state.xIsNext ? 'X' : 'O');
...
```
## Declaring a Winner