What does this controlled input do when the user types a character?function Field() { const [v, setV] = useState(''); return <input value={v} />; }