Created
November 28, 2017 05:18
-
-
Save gaperton/c9d8702a4df3b20b557fa27ad2f3ac39 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 linked = this.linkAll(); | |
return ( | |
<form onSubmit={ this.onSubmit }> | |
<label> Name: | |
<input type="text" { ...linked.name.props } /> | |
</label> | |
<label> Email: | |
<input type="text" { ...linked.email.props } /> | |
</label> | |
<label> Is active: | |
<input type="checkbox" { ...linked.isActive.props } /> | |
</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