import { useRef } from "react"; import { useSize } from 'ahooks'; export function useSizeHook() { const ref = useRef(null); const size = useSize(ref) || { width: 70, height: 70}; return { size, ref } }