rsnext/examples/with-apollo/pages/index.js

14 lines
338 B
JavaScript
Raw Normal View History

import App from '../components/App'
import Header from '../components/Header'
import Submit from '../components/Submit'
import PostList from '../components/PostList'
import withData from '../lib/withData'
export default withData(props => (
<App>
<Header pathname={props.url.pathname} />
<Submit />
<PostList />
</App>
))