mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
b90c77b17f
* Rename page component's class name: Counter => Index, Counter => Other * Rename counter component class name: AddCount => Counter * Add counter actions `decrement` and `reset` same as with-redux example * Modify page link by NavigateTo attr in Page component * Modify license MIT => ISC same as others in package.json * Modify README
35 lines
765 B
JavaScript
35 lines
765 B
JavaScript
import Link from 'next/link'
|
|
import {connect} from 'react-redux'
|
|
|
|
import Counter from './counter'
|
|
import Clock from './clock'
|
|
|
|
function Page ({error, lastUpdate, light, linkTo, NavigateTo, placeholderData, title}) {
|
|
return (
|
|
<div>
|
|
<h1>
|
|
{title}
|
|
</h1>
|
|
<Clock lastUpdate={lastUpdate} light={light} />
|
|
<Counter />
|
|
<nav>
|
|
<Link href={linkTo}>
|
|
<a>Navigate: {NavigateTo}</a>
|
|
</Link>
|
|
</nav>
|
|
{placeholderData &&
|
|
<pre>
|
|
<code>
|
|
{JSON.stringify(placeholderData, null, 2)}
|
|
</code>
|
|
</pre>}
|
|
{error &&
|
|
<p style={{color: 'red'}}>
|
|
Error: {error.message}
|
|
</p>}
|
|
</div>
|
|
)
|
|
}
|
|
|
|
export default connect(state => state)(Page)
|