form-render
Version:
通过 JSON Schema 生成标准 Form,常用于自定义搭建配置界面生成
15 lines (14 loc) • 373 B
TypeScript
import React from 'react';
import type { FormListFieldData } from 'antd';
import './index.less';
interface ListTableProps {
fields: FormListFieldData[];
schema: any;
delConfirmProps: any;
renderCore: any;
rootPath: any;
hideEmptyTable?: boolean;
[key: string]: any;
}
declare const TableList: React.FC<ListTableProps>;
export default TableList;