@vulform/react
Version:
React components for VulForm contact form management
17 lines • 496 B
TypeScript
/**
* FormField component for rendering individual form fields
*/
import React from 'react';
import { FormField as FormFieldType } from '@vulform/core';
interface FormFieldProps {
field: FormFieldType;
value: any;
error?: string;
disabled?: boolean;
onChange: (value: any) => void;
onBlur?: () => void;
className?: string;
}
export declare const FormField: React.NamedExoticComponent<FormFieldProps>;
export default FormField;
//# sourceMappingURL=FormField.d.ts.map