@fluent-windows/core
Version:
React components that inspired by Microsoft's Fluent Design System.
14 lines (13 loc) • 485 B
TypeScript
import * as React from 'react';
import { TableProps, DataType } from './Table.type';
export declare const name = "Table";
declare function Table<T extends DataType>(props: TableProps<T>): React.ReactElement;
declare namespace Table {
var displayName: string;
var propTypes: {
data: import("prop-types").Requireable<any[]>;
columns: import("prop-types").Requireable<any[]>;
children: import("prop-types").Requireable<any>;
};
}
export default Table;