forked from vercel/next.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage.js
29 lines (27 loc) · 775 Bytes
/
page.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import React from 'react'
import PropTypes from 'prop-types'
import Link from 'next/link'
import { compose, setDisplayName, pure, setPropTypes } from 'recompose'
import Clock from './clock'
import AddCount from './addCount'
const Page = ({ title, linkTo, light, lastUpdate, count, addCount }) =>
<div>
<h1>{title}</h1>
<Clock lastUpdate={lastUpdate} light={light} />
<AddCount count={count} addCount={addCount} />
<nav>
<Link href={linkTo}><a>Navigate</a></Link>
</nav>
</div>
export default compose(
setDisplayName('Page'),
setPropTypes({
title: PropTypes.string,
linkTo: PropTypes.string,
light: PropTypes.bool,
lastUpdate: PropTypes.number,
count: PropTypes.number,
addCount: PropTypes.func
}),
pure
)(Page)