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