import { useState } from 'preact/hooks'
export function Counter() {
const [count, setCount] = useState(0)
return (
<>
<p>Count: {count}</p>
<button onClick={() => setCount(c => c + 1)}>+</button>
<button onClick={() => setCount(c => c - 1)}>−</button>
</>
)
}Preact 微应用
Count
0