Dashboard sipadu mbip
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

useEventCallback.js 276B

12345678
  1. import { useCallback } from 'react';
  2. import useCommittedRef from './useCommittedRef';
  3. export default function useEventCallback(fn) {
  4. var ref = useCommittedRef(fn);
  5. return useCallback(function () {
  6. return ref.current && ref.current.apply(ref, arguments);
  7. }, [ref]);
  8. }