import type { GridCell } from '@/types/grid'; import { getStyleForAnsiColor } from '@/utils/ansi'; interface CellProps { cell: GridCell; onClick?: () => void; } export const Cell: React.FC = ({ cell, onClick }) => { return ( {cell.char === ' ' ? '\u00A0' : cell.char} ); };