()
| 55 | const intervalRef = useRef<NodeJS.Timeout | null>(null); |
| 56 | |
| 57 | const scrollUp = () => { |
| 58 | handleScrollTo({ y: scrollY.value - 200, animated: true }); |
| 59 | }; |
| 60 | |
| 61 | const scrollDown = () => { |
| 62 | handleScrollTo({ y: scrollY.value + 200, animated: true }); |
nothing calls this directly
no test coverage detected