UNPKG

@rjsf/core

Version:

A simple React component capable of building HTML forms out of a JSON schema.

7 lines 536 B
import { FallbackFieldTemplateProps, FormContextType, RJSFSchema, StrictRJSFSchema } from '@rjsf/utils'; /** * The `FallbackFieldTemplate` is used to render a field when no field matches. The field renders a type selector and * the schema field for the form data. */ export default function FallbackFieldTemplate<T = any, S extends StrictRJSFSchema = RJSFSchema, F extends FormContextType = any>(props: FallbackFieldTemplateProps<T, S, F>): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=FallbackFieldTemplate.d.ts.map