UNPKG

270 BJavaScriptView Raw
1import React from 'react';
2import AnimatedValue from './core/AnimatedValue';
3
4export default function useValue(initialValue) {
5 const ref = React.useRef(null);
6 if (ref.current === null) {
7 ref.current = new AnimatedValue(initialValue);
8 }
9 return ref.current;
10}