/** * The UI of a game of connect-four. */ class ConnectFourView { /** * Creates a new view that will update the given button grid and winner area. * * @param {Element} grid */ constructor(grid) { this.grid = grid; } }