UNPKG

@data-driven-forms/react-form-renderer

Version:

React Form Renderer. Data Driven Forms converts JSON form definitions into fully functional React forms.

11 lines (7 loc) 221 B
import { ComponentType } from "react"; export interface SchemaErrorProps { name: string; message: string; } declare const SchemaErrorComponent: ComponentType<SchemaErrorProps>; export default SchemaErrorComponent;