1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
next.js/test/integration/static/pages/counter.js

31 lines
566 B
JavaScript
Raw Normal View History

2017-05-09 21:03:20 +00:00
import React from 'react'
import Link from 'next/link'
let counter = 0
2017-05-09 21:03:20 +00:00
export default class Counter extends React.Component {
2017-05-09 21:03:20 +00:00
increaseCounter () {
counter++
this.forceUpdate()
2017-05-09 21:03:20 +00:00
}
render () {
return (
<div id='counter-page'>
<div>
<Link href='/'>
<a id='go-back'>Go Back</a>
2017-05-09 21:03:20 +00:00
</Link>
</div>
<p>Counter: {counter}</p>
2017-05-09 21:03:20 +00:00
<button
2017-05-10 01:54:08 +00:00
id='counter-increase'
2017-05-09 21:03:20 +00:00
onClick={() => this.increaseCounter()}
>
Increase
</button>
</div>
)
}
}