mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
9c4eefcdbf
* Add prettier for examples directory * Fix files * Fix linting * Add prettier script in case it has to be ran again
30 lines
645 B
JavaScript
30 lines
645 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.dispatch(startClock())
|
|
}
|
|
|
|
render () {
|
|
return (
|
|
<App>
|
|
<Header />
|
|
<Submit />
|
|
<PostList />
|
|
</App>
|
|
)
|
|
}
|
|
}
|
|
|
|
export default withReduxSaga(withApollo(BlogIndex))
|