Last active
June 23, 2018 11:04
-
-
Save alexbenic/d071940a712491f33ad227d745b36d92 to your computer and use it in GitHub Desktop.
This file contains 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() { | |
return( | |
<div | |
className="helvetica f2"> | |
<input className="ma2 pa1" | |
onChange={this.handleChange("firstName")} /> | |
<input className="ma2 pa1" | |
onChange={this.handleChange("lastName")} /> | |
<div className="ma2"> | |
{`Hello ${this.state.firstName} ${this.state.lastName}`} | |
</div> | |
</div> | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment