rsnext/examples/with-redux-saga/pages/other.js

24 lines
540 B
JavaScript
Raw Normal View History

2017-07-13 20:55:29 +02:00
import React from 'react'
import { connect } from 'react-redux'
import { startClock, tickClock } from '../actions'
2017-07-13 20:55:29 +02:00
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 }
2017-07-13 20:55:29 +02:00
}
componentDidMount () {
this.props.dispatch(startClock())
}
render () {
return <Page title='Other Page' linkTo='/' NavigateTo='Index Page' />
2017-07-13 20:55:29 +02:00
}
}
export default connect()(Other)