UNPKG

react-native-flip

Version:
11 lines (9 loc) 270 B
import React from 'react'; import AnimatedValue from './core/AnimatedValue'; export default function useValue(initialValue) { const ref = React.useRef(null); if (ref.current === null) { ref.current = new AnimatedValue(initialValue); } return ref.current; }