Created
August 13, 2018 23:18
-
-
Save stubailo/a3ca63f00da797d5585cf9fd34f1ee63 to your computer and use it in GitHub Desktop.
Add dog photo
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
| <Query | |
| query={gql` | |
| { | |
| hello | |
| + dogPhotoUrl | |
| } | |
| `} | |
| > | |
| - {({ data }) => <div>A greeting from the server: {data.hello}</div>} | |
| + {({ data }) => ( | |
| + <div> | |
| + A greeting from the server: {data.hello}<br /> | |
| + <img src={data.dogPhotoUrl} /> | |
| + </div> | |
| + )} | |
| </Query> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment