import { ROLES } from '@tabulus/constants'; import { CellContainer } from './styled'; import type { CellProps } from './types'; import type { FC } from 'react'; const Cell: FC = ({ children, className, type = 'cell', value }: CellProps) => { return ( {value ?? children ?? null} ); }; export { Cell }; export type { CellProps } from './types';