mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
126507cc1c
* Add immutable redux example * Updated readme * Fix linting errors
21 lines
491 B
JavaScript
21 lines
491 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>
|
|
)
|
|
})
|