UNPKG

antd

Version:

An enterprise-class UI design language and React components implementation

9 lines 201 B
import { useEffect, useRef } from 'react'; const usePrevious = value => { const ref = useRef(); useEffect(() => { ref.current = value; }); return ref.current; }; export default usePrevious;