mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
31 lines
566 B
JavaScript
31 lines
566 B
JavaScript
import React from 'react'
|
|
import Link from 'next/link'
|
|
|
|
let counter = 0
|
|
|
|
export default class Counter extends React.Component {
|
|
increaseCounter () {
|
|
counter++
|
|
this.forceUpdate()
|
|
}
|
|
|
|
render () {
|
|
return (
|
|
<div id='counter-page'>
|
|
<div>
|
|
<Link href='/'>
|
|
<a id='go-back'>Go Back</a>
|
|
</Link>
|
|
</div>
|
|
<p>Counter: {counter}</p>
|
|
<button
|
|
id='counter-increase'
|
|
onClick={() => this.increaseCounter()}
|
|
>
|
|
Increase
|
|
</button>
|
|
</div>
|
|
)
|
|
}
|
|
}
|