import React, {ComponentProps} from 'react' import {ScrollView} from 'react-native' import {useDraggableScroll} from '#/lib/hooks/useDraggableScrollView' export const DraggableScrollView = React.forwardRef< ScrollView, ComponentProps >(function DraggableScrollView(props, ref) { const {refs} = useDraggableScroll({ outerRef: ref, cursor: 'grab', // optional, default }) return })