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