import React from "react"; import ChessBoardSquare from "components/chess-board-square"; class ChessBoard extends React.Component { constructor(props) { super(props); } chessBoardRows() { const { store } = this.props; return store.getState().board; } chessBoardRow(row, i) { return (