import * as React from "react"; type IProps = { onMouseEnter?: () => void; onClick?: () => void; color: string; }; export function Cell(cellProps: IProps) { return (
); }