(props)
| 41 | |
| 42 | class App extends Component { |
| 43 | constructor(props) { |
| 44 | super(props); |
| 45 | this.handleClick = this.handleClick.bind(this); |
| 46 | this.state = getInitialState(); |
| 47 | } |
| 48 | |
| 49 | handleClick(row, square) { |
| 50 | let { turn, winner } = this.state; |
nothing calls this directly
no test coverage detected