// 예시
const [y, setY] = useState(0); (x)
const Y = new Animated.Value(0);
// 예시
const Y = new Animated.Value(0); // Animated Api를 이용하여 value 넣는다
Y = 20; // 직접 할당하지 않는다.
createAnimatedComponent()
함수를 사용한다.Way 1
스타일컴포넌트이면서 Animatable 컴포넌트
Way 2