UNPKG

extended-dynamic-forms

Version:

Extended React JSON Schema Form (RJSF) v6 with custom components, widgets, templates, layouts, and form events

11 lines (9 loc) 322 B
import { FC } from 'react'; import { WidgetProps } from '@rjsf/utils'; /** * Display-only widget using Ant Design Alert * Message/description can come from ui:options or fall back to schema title/description, or value. */ declare const AlertWidget: FC<WidgetProps>; export default AlertWidget; export { AlertWidget };