Skip to content

Instantly share code, notes, and snippets.

@nikolasburk
Last active March 8, 2018 10:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nikolasburk/d7550ea7e13ab267d368003858514e6d to your computer and use it in GitHub Desktop.
Save nikolasburk/d7550ea7e13ab267d368003858514e6d to your computer and use it in GitHub Desktop.
class App extends Component {
render() {
return <div>{this.props.data.hello}</div>
}
}
const HELLO_QUERY = gql`
query hello {
hello
}
`
export default graphql(HELLO_QUERY)(App)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment