UNPKG

react-admin-component

Version:
10 lines (9 loc) 421 B
import React from 'react'; import { FormBaseProps } from '../form-input'; import { FormProps } from 'antd/lib/form'; import { WrappedFormUtils } from 'antd/lib/form/Form'; interface FormCustomProps extends FormBaseProps, Omit<FormProps, 'onChange'> { customRender?: (form?: WrappedFormUtils) => React.ReactNode; } declare const FormCustom: (props: FormCustomProps) => JSX.Element; export default FormCustom;