UNPKG

form-render

Version:

通过 JSON Schema 生成标准 Form,常用于自定义搭建配置界面生成

10 lines (9 loc) 250 B
import './index.less'; interface RenderCoreProps { schema: any; rootPath?: any[] | undefined; parentPath?: any[] | undefined; [key: string]: any; } declare const RenderCore: (props: RenderCoreProps) => any; export default RenderCore;