Skip to content

Instantly share code, notes, and snippets.

@alexbenic
Last active June 23, 2018 11:04
Show Gist options
  • Save alexbenic/d071940a712491f33ad227d745b36d92 to your computer and use it in GitHub Desktop.
Save alexbenic/d071940a712491f33ad227d745b36d92 to your computer and use it in GitHub Desktop.
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