import { DescriptionFieldProps, FormContextType, RJSFSchema, StrictRJSFSchema } from '@rjsf/utils'; export default function DescriptionField< T = any, S extends StrictRJSFSchema = RJSFSchema, F extends FormContextType = any >({ id, description }: DescriptionFieldProps) { if (description) { return (
{description}
); } return null; }