以下のReactコンポーネントで、TypeScriptが型を自動推論するのはどの部分ですか? ```tsx import { useState } from 'react'; function Counter() { const [count, setCount] = useState(0); return ( <button onClick={() => setCount(count + 1)}> Count: {count} </button> ); } ```