@fto-consult/expo-ui
Version:
Bibliothèque de composants UI Expo,react-native
8 lines (7 loc) • 323 B
JavaScript
import { ScrollView } from "react-native";
import React from "$react";
const TableScrollViewNative = React.forwardRef(({children,...props},ref)=>{
return <ScrollView {...props} children={children} ref={ref}/>
});
TableScrollViewNative.displayName = "TableScrollViewNative";
export default TableScrollViewNative;