rsnext/examples/with-unstated/components/Counter.js
Luis Alvarez D 1992e2a96e
Example/update unstated (#11534)
* Updated components and deps

* Updated readme
2020-04-01 11:36:02 +02:00

16 lines
431 B
JavaScript

import CounterContainer from '../containers/counter'
export default function Counter() {
const counter = CounterContainer.useContainer()
return (
<div>
<h1>
Count: <span>{counter.count}</span>
</h1>
<button onClick={() => counter.decrement()}>-1</button>
<button onClick={() => counter.increment()}>+1</button>
<button onClick={() => counter.reset()}>Reset</button>
</div>
)
}