{props.person.name}
height: {props.person.height}
home world: {props.person.homeworld.name}
);
}}
/>
);
```
???
* QueryRenderer is a React Component provided by Relay that takes in a few props.
* Here's an example of the QueryRenderer using the Star Wars API.
* The first prop is a GraphQL query
* The second prop is the variables for that query
* This component will execute this query against your GraphQL server
* It has a `render` prop, which is called twice, first to render the loading state, and again with the response from your GraphQL server.
* This example is using a QueryRenderer to fetch and render all the data it needs
---
# `createFragmentContainer`
```javascript
const PersonComponent = ({person}) => (