form-render
Version:
通过 JSON Schema 生成标准 Form,常用于自定义搭建配置界面生成
14 lines (13 loc) • 383 B
TypeScript
import React from 'react';
import { ButtonProps } from 'antd/es/button';
import './index.less';
interface Props {
action: any;
value: string;
onChange: any;
uploadProps: any;
buttonProps: ButtonProps;
schema: any;
}
declare const FrUpload: ({ action, value, onChange, uploadProps, buttonProps, schema, }: Props) => React.JSX.Element;
export default FrUpload;