import * as React from 'react' import {Animated} from 'react-native' export function useAnimatedValue(initialValue: number) { const lazyRef = React.useRef() if (lazyRef.current === undefined) { lazyRef.current = new Animated.Value(initialValue) } return lazyRef.current as Animated.Value }