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