import React from 'react'; import Animated, { useAnimatedStyle } from 'react-native-reanimated'; type Props = { height: Animated.SharedValue; }; export default function AnimatedTopView({ height }: Props) { const contentStyle = useAnimatedStyle( () => ({ height: height.value, }), [] ); return ; }