import * as React from 'react'; import './index.less'; interface ITableProps extends React.HTMLProps { children: any, } export const Table = ({ children, ...rest }: ITableProps) => ( {children}
);