UNPKG

react-native-insta-story

Version:
10 lines (8 loc) 185 B
import { useEffect, useRef } from 'react'; export function usePrevious(value: any) { const ref = useRef(); useEffect(() => { ref.current = value; }); return ref.current; }