Fix indentation in tutorial (#8914)

This commit is contained in:
Dan Abramov
2017-02-02 13:24:26 +00:00
committed by GitHub
parent cd2aa1400d
commit 29cb7b126a

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