1 2 3 4 5 6 7 8 9 10
import { useState } from 'preact/hooks'; export default function Counter() { const [count, setCount] = useState(1); return ( <button id="counter" onClick={() => setCount(count + 1)}> {count} </button> ); }