UNPKG

@rjsf/core

Version:

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

8 lines 495 B
import { FieldProps, FormContextType, RJSFSchema, StrictRJSFSchema } from '@rjsf/utils'; /** The `StringField` component is used to render a schema field that represents a string type * * @param props - The `FieldProps` for this template */ declare function StringField<T = any, S extends StrictRJSFSchema = RJSFSchema, F extends FormContextType = any>(props: FieldProps<T, S, F>): import("react/jsx-runtime").JSX.Element; export default StringField; //# sourceMappingURL=StringField.d.ts.map