UNPKG

form-render

Version:

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

19 lines (18 loc) 359 B
import { FC } from 'react'; import './index.less'; interface IProps { className?: any; style?: object; children: any; title?: string; description?: any; collapsed?: boolean; displayType?: any; bordered?: boolean; ghost?: boolean; } /** * 折叠面板 */ declare const BoxCollapse: FC<IProps>; export default BoxCollapse;