简体中文
主题
用于构建用户界面
function Counter() { const count = signal(0); return <button onClick={() => count.value++}>{count}</button>; }