import { helpId, FieldHelpProps, FormContextType, RJSFSchema, StrictRJSFSchema } from '@rjsf/utils'; import { Text } from '@mantine/core'; export default function FieldHelpTemplate< T = any, S extends StrictRJSFSchema = RJSFSchema, F extends FormContextType = any >(props: FieldHelpProps) { const { idSchema, help } = props; const id = helpId(idSchema); return !help ? null : ( {help} ); }