UNPKG

@massds/mayflower-react

Version:

React versions of Mayflower design system UI components

36 lines (35 loc) 803 B
export interface TableProps { id?: string; head?: { rows?: { rowSpanOffset?: boolean; cells?: { heading: boolean; colspan?: string; rowspan?: string; text: string; key?: string; }[]; key?: string; }[]; }; bodies?: { rows?: { rowSpanOffset?: boolean; cells?: { heading: boolean; colspan?: string; rowspan?: string; text: string; key?: string; }[]; key?: string; }[]; key?: string; }[]; } declare const Table: { (table: TableProps): any; defaultProps: {}; }; export default Table;