UNPKG

@gdjiami/hooks

Version:

react hooks for mygzb.com

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