rsnext/examples/with-redux-saga/pages/other.js
Joe Haddad 18a9c7e371
Improve linting rules to catch more errors (#9374)
* Update `packages/`

* Update examples

* Update tests

* Update bench

* Update top level files

* Fix build

* trigger
2019-11-10 19:24:53 -08:00

23 lines
537 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)