ReferenceComponents<input><input> creates a text input component. App.jsstyles.cssApp.js Resetconst defaultValue = 'Default value'; export default function App() { return <input value={defaultValue} style={{ margin: 20 }} onChange={val => console.log(val)} />; }; Show Preview Properties onChange: An event fired when string in the input is changed by the user PreviousimageNexttoggle