UNPKG

create-expo-cljs-app

Version:

Create a react native application with Expo and Shadow-CLJS!

9 lines 281 B
import { Animated } from 'react-native'; import useLazyRef from './useLazyRef'; export default function useAnimatedValue(initialValue) { const { current } = useLazyRef(() => new Animated.Value(initialValue)); return current; } //# sourceMappingURL=useAnimatedValue.js.map