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
23 lines
511 B
JavaScript
23 lines
511 B
JavaScript
import Link from 'next/link'
|
|
import { connect } from 'react-redux'
|
|
import Clock from './Clock'
|
|
import AddCount from './AddCount'
|
|
|
|
export default connect(state => ({
|
|
lastUpdate: state.get('lastUpdate'),
|
|
light: state.get('light')
|
|
}))(({ title, linkTo, lastUpdate, light }) => {
|
|
return (
|
|
<div>
|
|
<h1>{title}</h1>
|
|
<Clock lastUpdate={lastUpdate} light={light} />
|
|
<AddCount />
|
|
<nav>
|
|
<Link href={linkTo}>
|
|
<a>Navigate</a>
|
|
</Link>
|
|
</nav>
|
|
</div>
|
|
)
|
|
})
|