1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
next.js/examples/with-apollo-and-redux-saga/pages/blog/index.js

32 lines
649 B
JavaScript
Raw Normal View History

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.dispatch(startClock())
}
render () {
return (
<App>
<Header />
<Submit />
<PostList />
</App>
)
}
}
export default withReduxSaga(
withApollo(BlogIndex)
)