antd-table-editable-af
Version:
A editable table based on antd table
7 lines (6 loc) • 363 B
TypeScript
import { Component, EditableOnCellProps } from '../../interface';
interface CellDefaultProps<RecordType> extends EditableOnCellProps<RecordType> {
cellComponent: Component<any>;
}
export default function CellDefault<RecordType>({ cellComponent: CellComponent, ...restProps }: CellDefaultProps<RecordType>): import("react/jsx-runtime").JSX.Element;
export {};