import { getTemplate, FormContextType, RJSFSchema, StrictRJSFSchema, WidgetProps } from '@rjsf/utils'; /** The `TextWidget` component uses the `BaseInputTemplate`. * * @param props - The `WidgetProps` for this component */ export default function TextWidget( props: WidgetProps, ) { const { options, registry } = props; const BaseInputTemplate = getTemplate<'BaseInputTemplate', T, S, F>('BaseInputTemplate', registry, options); return ; }