mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
359e25af13
* copied with-redux -> with-redux-wrapper, changed links in readme * added simplified redux wrapper * removed next-redux-wrapper dep * changed imports to local wrapper * changed readme to reflect changes
18 lines
424 B
JavaScript
18 lines
424 B
JavaScript
import Link from 'next/link'
|
|
import { connect } from 'react-redux'
|
|
import Clock from './Clock'
|
|
import AddCount from './AddCount'
|
|
|
|
export default connect(state => state)(({ 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>
|
|
)
|
|
})
|