extended-dynamic-forms
Version:
Extended React JSON Schema Form (RJSF) v6 with custom components, widgets, templates, layouts, and form events
11 lines (9 loc) • 300 B
TypeScript
import { FC } from 'react';
import { WidgetProps } from '@rjsf/utils';
/**
* Display-only widget using Ant Design Image
* Uses the field value as the `src` by default; ui:options.src can override.
*/
declare const ImageWidget: FC<WidgetProps>;
export default ImageWidget;
export { ImageWidget };