Last active
September 14, 2023 17:43
-
-
Save rapPayne/ed702cc6882f1fbfab007b5736ba35b2 to your computer and use it in GitHub Desktop.
Unstyled React component
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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