export const CellContents: React.FC<CellContentProps> = ({ children }) => (
  <span className={styles.cellContents}>{children}</span>
)