UNPKG

easy-form-handler

Version:

A powerful, lightweight React form handling library with built-in validation, customizable styling, and intuitive components.

14 lines (13 loc) 281 B
import React from 'react'; interface SelectProps { name: string; label: string; options: { value: string; label: string; }[]; watch: (value: any) => void; error?: string; } declare const Select: React.FC<SelectProps>; export default Select;