material-ui-cordova
Version:
React components that implement Google's Material Design.
16 lines (11 loc) • 310 B
TypeScript
import * as React from 'react';
import { StandardProps } from '..';
export interface TableProps extends StandardProps<
React.TableHTMLAttributes<HTMLTableElement>,
TableClassKey
> {}
export type TableClassKey =
| 'root'
;
declare const Table: React.ComponentType<TableProps>;
export default Table;