I want to set the state via onChange property on Textfield. But the error says Property 'value' does not exist on type 'EventTarget'.
How can I resolve this issue ?
// ....
<Textfield placeholder="you@domain.com"
value={email}
onChange={e => setEmail(e.target.value)}
{...fieldProps} />