import React from 'react'; import { ICellProps } from '../index'; export default function TextCell({ cell }: ICellProps) { const { value = '' } = cell; return {String(value)} ; }