Browse Source

Fix indentation in tutorial (#8914)

main
Dan Abramov 8 years ago
committed by GitHub
parent
commit
29cb7b126a
  1. 4
      tutorial/tutorial.md

4
tutorial/tutorial.md

@ -295,8 +295,8 @@ Now X and O take turns. Next, change the "status" text in Board's `render` so th
```javascript ```javascript
render() { render() {
const status = 'Next player: ' + (this.state.xIsNext ? 'X' : 'O'); const status = 'Next player: ' + (this.state.xIsNext ? 'X' : 'O');
... ...
``` ```
## Declaring a Winner ## Declaring a Winner

Loading…
Cancel
Save