ontime-components
Version:
List of react components
16 lines (15 loc) • 407 B
TypeScript
import { PureComponent } from 'react';
import { IProps } from '../../libs/interfaces';
interface ITableProps extends IProps {
row: Function;
data?: any[];
head?: Function;
}
interface ITableDefProps {
data: any[];
}
declare class Table extends PureComponent<ITableProps & ITableDefProps> {
static defaultProps: ITableDefProps;
render(): JSX.Element;
}
export { Table, ITableProps };