Skip to content

Instantly share code, notes, and snippets.

@cmdcolin
Created April 18, 2024 19:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cmdcolin/4eeb22072878cf9b86a6525e1720dc5d to your computer and use it in GitHub Desktop.
Save cmdcolin/4eeb22072878cf9b86a6525e1720dc5d to your computer and use it in GitHub Desktop.
// this is a controlled component
function MyTextBox() {
const [myValue, setMyValue] = useState('initial value')
return <input type="text" value={myValue} onChange={event=>setMyValue(event.target.value)}/>
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment