mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
81cfea7d90
* add new example * update gitignore * fix lint * fix linting * fix linting again * update unstated example * remove unsued var * update readme
38 lines
906 B
JavaScript
38 lines
906 B
JavaScript
import React from 'react'
|
|
import Link from 'next/link'
|
|
import { Subscribe } from 'unstated'
|
|
import { ClockContainer, CounterContainer } from '../containers'
|
|
import { Clock, Counter } from '../components'
|
|
|
|
class About extends React.Component {
|
|
componentWillUnmount () {
|
|
clearInterval(this.timer)
|
|
}
|
|
render () {
|
|
return (
|
|
<Subscribe to={[ClockContainer, CounterContainer]}>
|
|
{
|
|
(clock, counter) => {
|
|
this.timer = clock.interval
|
|
return (
|
|
<div>
|
|
<Link href='/index'>
|
|
<button>
|
|
go to Index
|
|
</button>
|
|
</Link>
|
|
<div>
|
|
<Clock clock={clock} />
|
|
<Counter counter={counter} />
|
|
</div>
|
|
</div>
|
|
)
|
|
}
|
|
}
|
|
</Subscribe>
|
|
)
|
|
}
|
|
}
|
|
|
|
export default About
|