import type { Cells } from '../types.js'
export function emptyCellsLike(cells: Cells): Cells {
return cells.map((row) => row.map(() => false))
}