Created
November 5, 2018 14:37
-
-
Save tsamaya/74bc656c21a508bd7b149e547178be24 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() { | |
return ( | |
<div> | |
<Header /> | |
<div className="columns"> | |
<div className="column is-one-third-desktop"> | |
<GeocodingForm | |
apikey={this.state.apikey} | |
query={this.state.query} | |
isSubmitting={this.state.isSubmitting} | |
onSubmit={this.handleSubmit} | |
onChange={this.handleChange} | |
/> | |
</div> | |
<div className="column"> | |
<GeocodingResults response={this.state.response} /> | |
</div> | |
</div> | |
</div> | |
); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment