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