Skip to content

Instantly share code, notes, and snippets.

@ilyeshammadi
Created August 11, 2017 20:59
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 ilyeshammadi/0358fe86aa65eda7acaa2e52180c319f to your computer and use it in GitHub Desktop.
Save ilyeshammadi/0358fe86aa65eda7acaa2e52180c319f to your computer and use it in GitHub Desktop.
const Form = () => {
return (
<form>
<input type="email" onChange={(e) => console.log(e.target.value)}/>
<input type="password"/>
<button type="submit">Submit</button>
</form>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment