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