diff options
Diffstat (limited to 'src/view/com/pager/DraggableScrollView.tsx')
-rw-r--r-- | src/view/com/pager/DraggableScrollView.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/view/com/pager/DraggableScrollView.tsx b/src/view/com/pager/DraggableScrollView.tsx index 4b7396eaa..fc06b72e8 100644 --- a/src/view/com/pager/DraggableScrollView.tsx +++ b/src/view/com/pager/DraggableScrollView.tsx @@ -1,7 +1,8 @@ -import {useDraggableScroll} from 'lib/hooks/useDraggableScrollView' import React, {ComponentProps} from 'react' import {ScrollView} from 'react-native' +import {useDraggableScroll} from '#/lib/hooks/useDraggableScrollView' + export const DraggableScrollView = React.forwardRef< ScrollView, ComponentProps<typeof ScrollView> |