mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
2e7bc1074d
* With-Redux-example-update-request Hello Next.js, I’ve added an additional example to “With-Redux” and updated some of the original code to help illustrate to less inexperienced developers how to implement Redux with Next.js. The example is a simple counter to help reinforce how the client and server renderings work together. In addition I also updated some of the redux boilerplate code to help fully demonstrate how redux can be implemented when using is with Next.js Please contact me at spencer.bigum@gmail.com for further questions or anything else you might need. Thanks, Spencer * fixed listing issues: examples/with-redux * Updated code based on @impronunciable Feedback
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>
|
|
)
|
|
})
|