form-render
Version:
通过 JSON Schema 生成标准 Form,常用于自定义搭建配置界面生成
13 lines (12 loc) • 332 B
TypeScript
import React from 'react';
import type { FormListFieldData, FormListOperation } from 'antd';
import './index.less';
interface Props {
schema: any;
fields: FormListFieldData[];
operation: FormListOperation;
prefix: string;
[key: string]: any;
}
declare const TableList: React.FC<Props>;
export default TableList;