@fto-consult/expo-ui
Version:
Bibliothèque de composants UI Expo,react-native
14 lines (10 loc) • 419 B
JavaScript
import React from '$react';
import { ScrollView} from 'react-native';
const ScrollViewComponent = React.forwardRef(({testID,...rest},ref) => {
return <ScrollView testID={testID || "RN_ScrollViewComponent"} {...rest} ref={ref}/>
});
ScrollViewComponent.displayName = "ScrollViewComponent";
export default ScrollViewComponent;
ScrollViewComponent.propTypes = {
...defaultObj(ScrollView.propTypes),
}