UNPKG

quick-ui-design

Version:

A Quick UI library for user interface design with React fast and easy.

10 lines (9 loc) 245 B
import { TableProps } from 'antd'; import { FC } from 'react'; import { TABLE } from '../../Types'; export interface ITable { ctype: typeof TABLE; props: TableProps<any>; } declare const Table: FC<ITable>; export default Table;