UNPKG

@gdjiami/hooks

Version:

react hooks for mygzb.com

8 lines 187 B
import { useRef, useEffect } from 'react'; export default function useRefProps(props) { var ref = useRef(props); useEffect(function () { ref.current = props; }); return ref; }