import { forwardRef } from 'react'; import { ScrollView as RNScrollView, ScrollViewProps } from 'react-native'; export const ScrollView = forwardRef( ({ style, ...otherProps }, ref) => { return ( ); } );