(props)
| 7 | */ |
| 8 | export default class ChessboardTutorialApp extends Component { |
| 9 | constructor(props) { |
| 10 | super(props); |
| 11 | this.unobserve = observe(this.handleChange.bind(this)); |
| 12 | } |
| 13 | |
| 14 | handleChange(knightPosition) { |
| 15 | const nextState = { knightPosition }; |