import React from 'react'; import Square from './square'; import styles from './styles.css'; export default class Board extends React.Component { renderSquare(i) { return ( this.props.onClick(i)} /> ); } render() { return (
{this.renderSquare(0)} {this.renderSquare(1)} {this.renderSquare(2)}
{this.renderSquare(3)} {this.renderSquare(4)} {this.renderSquare(5)}
{this.renderSquare(6)} {this.renderSquare(7)} {this.renderSquare(8)}
); } }