()
| 34 | } |
| 35 | |
| 36 | render() { |
| 37 | const squares = []; |
| 38 | for (let i = 0; i < 64; i += 1) { |
| 39 | squares.push(this.renderSquare(i)); |
| 40 | } |
| 41 | |
| 42 | return ( |
| 43 | <div className="Board"> |
| 44 | {squares} |
| 45 | </div> |
| 46 | ); |
| 47 | } |
| 48 | } |
nothing calls this directly
no test coverage detected