import { FormContextType, getUiOptions, RJSFSchema, StrictRJSFSchema, TitleFieldProps } from '@rjsf/utils'; export default function TitleField({ id, title, uiSchema, }: TitleFieldProps) { const uiOptions = getUiOptions(uiSchema); return (
{uiOptions.title || title}

); }