UNPKG

react-formal

Version:

Classy HTML form management for React

10 lines (9 loc) 259 B
import { useBindingContext } from './BindingContext'; /** * Returns the current form value and onChange handler for the Form */ function useForm() { const ctx = useBindingContext(); return [ctx.formValue, ctx.updateFormValue]; } export default useForm;