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