2017-01-06 11:38:51 +00:00
|
|
|
import React from 'react'
|
|
|
|
import Link from 'next/link'
|
|
|
|
import { inject, observer } from 'mobx-react'
|
|
|
|
import Clock from './Clock'
|
|
|
|
|
|
|
|
@inject('store') @observer
|
|
|
|
class Page extends React.Component {
|
|
|
|
componentDidMount () {
|
|
|
|
this.props.store.start()
|
|
|
|
}
|
|
|
|
|
|
|
|
componentWillUnmount () {
|
|
|
|
this.props.store.stop()
|
|
|
|
}
|
|
|
|
|
|
|
|
render () {
|
|
|
|
return (
|
|
|
|
<div>
|
|
|
|
<h1>{this.props.title}</h1>
|
|
|
|
<Clock lastUpdate={this.props.store.lastUpdate} light={this.props.store.light} />
|
|
|
|
<nav>
|
2017-01-16 21:27:55 +00:00
|
|
|
<Link href={this.props.linkTo}><a>Navigate</a></Link>
|
2017-01-06 11:38:51 +00:00
|
|
|
</nav>
|
|
|
|
</div>
|
|
|
|
)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
export default Page
|