1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
next.js/examples/with-redux/components/Page.js

16 lines
371 B
JavaScript

import Link from 'next/link'
import { connect } from 'react-redux'
import Clock from './Clock'
export default connect(state => state)(({ title, linkTo, lastUpdate, light }) => {
return (
<div>
<h1>{title}</h1>
<Clock lastUpdate={lastUpdate} light={light} />
<nav>
<Link href={linkTo}><a>Navigate</a></Link>
</nav>
</div>
)
})