import * as React from 'react'; interface ITableCellProps extends React.HTMLProps { children: any, } export const TableCell = ({ children, ...rest }: ITableCellProps) => ( {children} );