import { FormContextType, TitleFieldProps, RJSFSchema, StrictRJSFSchema } from '@rjsf/utils'; import { Title } from '@mantine/core'; export default function TitleField( props: TitleFieldProps ) { const { id, title } = props; return title ? ( {title} ) : null; }