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