UNPKG

@confi/conflux-react-ui-test-package

Version:

Modern and minimalist React UI library.

20 lines (19 loc) 508 B
import React from 'react'; import { TableColumnItem } from './table-context'; interface Props { columns: Array<TableColumnItem>; row: any; rowIndex: number; emptyText: string; onCellClick: (cell: any, rowIndex: number, colunmIndex: number) => void; } export declare type cellActions = { remove: Function; }; export declare type cellData = { row: number; column: number; rowValue: any; }; declare const _default: React.NamedExoticComponent<Props>; export default _default;