summaryrefslogtreecommitdiff
path: root/examples/framework-preact/src/components/Counter.tsx
blob: 5d702fb42ed9579183f83771b9d3f82539194e79 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { h, Fragment } from 'preact';
import './Counter.css';

export default function Counter({ children, count }) {
	const add = () => count.value++;
	const subtract = () => count.value--;

	return (
		<>
			<div class="counter">
				<button onClick={subtract}>-</button>
				<pre>{count}</pre>
				<button onClick={add}>+</button>
			</div>
			<div class="counter-message">{children}</div>
		</>
	);
}