ValueInputPropsinterface

{
	value?: O | I | undefined;
	onValue(value: O | undefined): void;
}
PropertyType
.valueO
I
The current value of the input.

"Value inputs" are inputs that generate a value, like <input> or <textarea>

Methods

Go

ValueInputProps.onValue()method

Called when the value for the input changes, so you can make changes based on the new value (or undefined to set back to default).

onValue(value: O | undefined): void