import React, { FC, memo } from 'react' import { Text } from 'react-native' import { isEqual } from 'lodash' import { CellProps } from './TableTypes' import { styles } from './TableRow' const LINEMAP = { singleLine: 1, multiLine: 2, noMax: Number.MAX_SAFE_INTEGER, } const TextCell: FC = ({ cell, theme }) => { const { binding } = cell return ( {cell.value} ) } export default memo(TextCell, isEqual)