rsnext/examples/with-apollo-and-redux-saga/pages/blog/index.js
Corbin Crutchley 1d66da15a1 with apollo and redux saga example: Update deps (#6734)
* with apollo and redux saga example: Update deps

* Fix linting problems
2019-03-27 16:00:57 -05:00

29 lines
651 B
JavaScript

import React from 'react'
import withApollo from '../../lib/withApollo'
import withReduxSaga from '../../lib/withReduxSaga'
import { startClock } from '../../lib/clock/actions'
import App from '../../components/App'
import Header from '../../components/Header'
import Submit from '../../components/Submit'
import PostList from '../../components/PostList'
class BlogIndex extends React.Component {
componentDidMount () {
this.props.store.dispatch(startClock())
}
render () {
return (
<App>
<Header />
<Submit />
<PostList />
</App>
)
}
}
export default withReduxSaga(withApollo(BlogIndex))