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 } } export default connect()(Other)