UNPKG

@avarock/react-form

Version:

A customizable React form library with modular input components for building flexible forms

9 lines (8 loc) 191 B
export type InputBaseProps = { name: string; label: string; value?: string; onChangeInput?: (name: string, value: any) => void; error?: string; className?: string; };