rsnext/examples/with-apollo-and-redux/pages/apollo.js
2019-10-31 10:40:34 -04:00

13 lines
297 B
JavaScript

import Layout from '../components/Layout'
import Submit from '../components/Submit'
import PostList from '../components/PostList'
import { withApollo } from '../lib/apollo'
const ApolloPage = () => (
<Layout>
<Submit />
<PostList />
</Layout>
)
export default withApollo(ApolloPage)