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
24 lines
540 B
JavaScript
24 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)
|