Skip to content

Instantly share code, notes, and snippets.

@rapPayne
Last active September 14, 2023 17:43
Show Gist options
  • Save rapPayne/ed702cc6882f1fbfab007b5736ba35b2 to your computer and use it in GitHub Desktop.
Save rapPayne/ed702cc6882f1fbfab007b5736ba35b2 to your computer and use it in GitHub Desktop.
Unstyled React component
// Super-simple component -- An input with a label and a button. No big deal.
export const ChangeName = ({ user, update, save }) => {
return (
<section>
<div>
<label htmlFor="user">User name</label>
<input id="user" onChange={e => update(e.target.value)} value={user} />
</div>
<button onClick={save}>Save</button>
</section>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment