📅  最后修改于: 2022-03-11 15:04:23.653000             🧑  作者: Mango
const refContainer = useRef(initialValue);
//useRef returns a mutable ref object whose .current property is initialized to the passed argument (initialValue).
//The returned object will persist for the full lifetime of the component.