Sorry newbie question here - I want to use the syncfusion form components such as TextBoxComponent but I cannot find in the documentation where I can actually get hold of the values input by the user. For react inputs I would normally use something like
<input ... onchange={(e) => handleinput(e)} value="{myValue}"
where
const handleInput = (e) => setMyValue(e.target.value);
but this does not work with <TextBoxComponent /> Any suggestions?
Thanks in advance.