UNPKG

react-native-reanimated-carousel

Version:

Simple carousel component.fully implemented using Reanimated 2.Infinitely scrolling, very smooth.

12 lines 286 B
import React from "react"; export function useCheckMounted() { const mounted = React.useRef(false); React.useEffect(() => { mounted.current = true; return () => { mounted.current = false; }; }, []); return mounted; } //# sourceMappingURL=useCheckMounted.js.map