Created
November 28, 2017 04:46
-
-
Save gaperton/3ef1a60e9a7a1349ff85ff5e8132af80 to your computer and use it in GitHub Desktop.
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
render(){ | |
const { state } = this; | |
return ( | |
<form onSubmit={ this.onSubmit }> | |
<label> Name: | |
<input type="text" value={ state.name } /> | |
</label> | |
<label> Email: | |
<input type="text" value={ state.email } /> | |
</label> | |
<label> Is active: | |
<input type="checkbox" checked={ state.isActive } /> | |
</label> | |
<button type="submit">Add User</button> | |
</form> | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment