rsnext/test/integration/page-extensions/pages/hmr/some-page.tsx
Joe Haddad b3170d2648
Format missed files (#7464)
* Format missed files

* Remove unnecessary rule

* Fix type error
2019-05-29 18:19:32 -07:00

23 lines
493 B
TypeScript

import React from 'react'
if (typeof window !== 'undefined' && !(window as any).HMR_RANDOM_NUMBER) {
;(window as any).HMR_RANDOM_NUMBER = Math.random()
}
export default class Counter extends React.Component {
state = { count: 0 }
incr() {
const { count } = this.state
this.setState({ count: count + 1 })
}
render() {
return (
<div>
<p>COUNT: {this.state.count}</p>
<button onClick={() => this.incr()}>Increment</button>
</div>
)
}
}