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