HomeVendure CoreShow hidden breadcrumbs...React HooksUseFormControlUseFormControl@vendure/admin-uiSource Provides access to the current FormControl value and a method to update the value. Example Tsimport { useFormControl, ReactFormInputProps } from '@vendure/admin-ui/react';import React from 'react';export function ReactNumberInput({ readonly }: ReactFormInputProps) { const { value, setFormValue } = useFormControl(); const handleChange = (e: React.ChangeEvent<HTMLInputElement>) => { setFormValue(val); }; return ( <div> <input readOnly={readonly} type="number" onChange={handleChange} value={value} /> </div> );} Signaturefunction useFormControl(): voidWas this chapter helpful?It was helpfulIt wasn't helpfulReport IssuePreviousUseDetailComponentDataNextUseInjectorEdited Feb 2, 2026·Edit this page