UNPKG

react-native-filament-buildcores

Version:

A real-time physically based 3D rendering engine for React Native

13 lines (12 loc) 300 B
import { useEffect, useRef } from 'react'; /** * A hook that returns the previous value of a variable */ export default function usePrevious(value) { const ref = useRef(); useEffect(() => { ref.current = value; }, [value]); return ref.current; } //# sourceMappingURL=usePrevious.js.map