MutableRefObject

先看看 useRef:

  1. const refContainer = useRef(initialValue)

useRef returns a mutable ref object whose .current property is initialized to the passed argument (initialValue).
所以,MutableRefObject 就是返回的 ref 的类型