Created
September 27, 2017 02:41
-
-
Save rauljordan/93f1bb7efd6b718d78b9d77f0a0395ff 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
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