Skip to content

Instantly share code, notes, and snippets.

@rauljordan
Created September 27, 2017 02:41
Show Gist options
  • Save rauljordan/93f1bb7efd6b718d78b9d77f0a0395ff to your computer and use it in GitHub Desktop.
Save rauljordan/93f1bb7efd6b718d78b9d77f0a0395ff to your computer and use it in GitHub Desktop.
import { graphql, compose } from 'react-apollo';
function UserProfile(props) {
return 'Your Name is: {props.data.currentUser.name}';
}
export default compose(graphql(query))(UserProfile);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment