UNPKG

react-native-insta-story-2

Version:

custom patched version of react-native-insta-story Story component for React Native.

10 lines (8 loc) 206 B
import React, {useEffect, useRef} from "react"; export function usePrevious(value) { const ref = useRef(); useEffect(() => { ref.current = value; }); return ref.current; }