import React, { useState } from "react"; import cn from "classnames"; import { Cell } from "../types"; import styles from "../styles/board.module.css"; interface BoardProps { cells: Cell[]; cellWidth: number; focusedCellIndex?: number; onCellClick: (index: number) => void; } const Board = (props: BoardProps) => (