rsnext/examples/with-relay-modern/pages/index.js
Tim Neutkens 9c4eefcdbf
Add prettier for examples directory (#5909)
* Add prettier for examples directory

* Fix files

* Fix linting

* Add prettier script in case it has to be ran again
2018-12-17 17:34:32 +01:00

26 lines
494 B
JavaScript

import React, { Component } from 'react'
import { graphql } from 'react-relay'
import withData from '../lib/withData'
import BlogPosts from '../components/BlogPosts'
class Index extends Component {
static displayName = `Index`
render (props) {
return (
<div>
<BlogPosts viewer={this.props.viewer} />
</div>
)
}
}
export default withData(Index, {
query: graphql`
query pages_indexQuery {
viewer {
...BlogPosts_viewer
}
}
`
})