import React from 'react' import { ScrollView } from 'react-native' type Props = React.ComponentProps const scrollViewProps: Props = { horizontal: true, showsHorizontalScrollIndicator: false, } const TableScrollContainer: React.FC = ({ children, ...otherProps }) => ( {children} ) export default TableScrollContainer