Skip to content

Instantly share code, notes, and snippets.

@Louiefigz
Created December 22, 2016 20:21
Show Gist options
  • Save Louiefigz/6418d61dfd5f74587aac52362ef14c33 to your computer and use it in GitHub Desktop.
Save Louiefigz/6418d61dfd5f74587aac52362ef14c33 to your computer and use it in GitHub Desktop.
class RegistrationForm extends React.Component {
render() {
return (
<form>
<label>Username</label>
<input type="text" />
<label>Password</label>
<input type="password" />
<button type="submit">Register</button>
</form>
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment