Skip to content

Instantly share code, notes, and snippets.

@Yamo93
Last active July 18, 2022 15:57
Show Gist options
  • Save Yamo93/34ea079c686c139bf34c9aa1ab6cf406 to your computer and use it in GitHub Desktop.
Save Yamo93/34ea079c686c139bf34c9aa1ab6cf406 to your computer and use it in GitHub Desktop.
Window component
function Window () {
const [text, setText] = useState('');
return <div>
<label>Text:</label>
<input type="text" value={text} onChange={(e) => setText(e.target.value)} />
<button>Save</button>
</div>;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment