@lonli-lokli/dynamic-forms-mui
Version:
Material UI 5 theme, fields and widgets for react-jsonschema-form
7 lines (6 loc) • 458 B
TypeScript
import { FormContextType, TitleFieldProps, RJSFSchema, StrictRJSFSchema } from '@lonli-lokli/dynamic-forms-utils';
/** The `TitleField` is the template to use to render the title of a field
*
* @param props - The `TitleFieldProps` for this component
*/
export default function TitleField<T = any, S extends StrictRJSFSchema = RJSFSchema, F extends FormContextType = any>({ id, title, }: TitleFieldProps<T, S, F>): import("react/jsx-runtime").JSX.Element;