rsnext/examples/with-redux-saga/pages/other.js
Tim Neutkens 9c4eefcdbf
Add prettier for examples directory (#5909)
* Add prettier for examples directory

* Fix files

* Fix linting

* Add prettier script in case it has to be ran again
2018-12-17 17:34:32 +01:00

23 lines
540 B
JavaScript

import React from 'react'
import { connect } from 'react-redux'
import { startClock, tickClock } from '../actions'
import Page from '../components/page'
class Other extends React.Component {
static async getInitialProps (props) {
const { store, isServer } = props.ctx
store.dispatch(tickClock(isServer))
return { isServer }
}
componentDidMount () {
this.props.dispatch(startClock())
}
render () {
return <Page title='Other Page' linkTo='/' NavigateTo='Index Page' />
}
}
export default connect()(Other)