Skip to content

Commit

Permalink
Minor wording change
Browse files Browse the repository at this point in the history
  • Loading branch information
peggyrayzis committed Apr 12, 2018
1 parent ca55ed3 commit d9e00d9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/source/essentials/get-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ client
.then(result => console.log(result));
```

Open up your console and inspect the result object. You should see `data` property with `rates` attached, along with some other properties like `loading` and `networkStatus`. While you don't need React or another front-end framework just to fetch data with Apollo Client, our view layer integrations make it easier to bind your queries to your UI and reactively update your components with data. Let's learn how to connect Apollo Client to React so we can start building query components with `react-apollo`.
Open up your console and inspect the result object. You should see a `data` property with `rates` attached, along with some other properties like `loading` and `networkStatus`. While you don't need React or another front-end framework just to fetch data with Apollo Client, our view layer integrations make it easier to bind your queries to your UI and reactively update your components with data. Let's learn how to connect Apollo Client to React so we can start building query components with `react-apollo`.

<h2 id="creating-provider">Connect your client to React</h2>

Expand Down

0 comments on commit d9e00d9

Please sign in to comment.