@rjsf/core
Version:
A simple React component capable of building HTML forms out of a JSON schema.
9 lines • 572 B
TypeScript
import { FormContextType, RJSFSchema, StrictRJSFSchema, UnsupportedFieldProps } from '@rjsf/utils';
/** The `UnsupportedField` component is used to render a field in the schema is one that is not supported by
* react-jsonschema-form.
*
* @param props - The `FieldProps` for this template
*/
declare function UnsupportedField<T = any, S extends StrictRJSFSchema = RJSFSchema, F extends FormContextType = any>(props: UnsupportedFieldProps<T, S, F>): import("react/jsx-runtime").JSX.Element;
export default UnsupportedField;
//# sourceMappingURL=UnsupportedField.d.ts.map