react-admin-component
Version:
react library
10 lines (9 loc) • 421 B
TypeScript
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;