@rjsf/core
Version:
A simple React component capable of building HTML forms out of a JSON schema.
7 lines • 552 B
TypeScript
import { FallbackFieldProps, FormContextType, RJSFSchema, StrictRJSFSchema } from '@rjsf/utils';
/**
* The `FallbackField` component is used to render a field for unsupported or unknown schema types. If
* `useFallbackUiForUnsupportedType` is enabled in the `globalUiOptions`, it provides a type selector
*/
export default function FallbackField<T = any, S extends StrictRJSFSchema = RJSFSchema, F extends FormContextType = any>(props: FallbackFieldProps<T, S, F>): import("react/jsx-runtime").JSX.Element;
//# sourceMappingURL=FallbackField.d.ts.map