Code example;
<TextField id="name" onChange={(e: any) => setName(e.target.value)} value={name}> </TextField>
In this case; Is TextField rerendering when I press any character? Or Just value is changing?
If Element itself will be re-render, Is it the best way to do this?
Note: I set name to value because I have a form and if I come back to the screen I want to set state value to the TextField value.