UNPKG

baseui

Version:

A React Component library implementing the Base design language

11 lines (10 loc) 284 B
import * as React from 'react'; import type { TableProps } from './types'; export default class Table extends React.Component<TableProps> { static defaultProps: { columns: any[]; data: any[][]; isLoading: boolean; }; render(): React.JSX.Element; }