| 3 | import Animated, { useAnimatedStyle } from "react-native-reanimated"; |
| 4 | |
| 5 | interface Props { |
| 6 | children: React.ReactNode; |
| 7 | position: { |
| 8 | y: number; |
| 9 | }; |
| 10 | } |
| 11 | |
| 12 | export default function IndicatorProvider({ |
| 13 | children, |
nothing calls this directly
no outgoing calls
no test coverage detected