import React from 'react'; import { ScrollView, StyleSheet } from 'react-native'; import scrollPersistTaps from '../../lib/methods/helpers/scrollPersistTaps'; const styles = StyleSheet.create({ container: { paddingVertical: 16 } }); interface IListContainer { children: (React.ReactElement | null)[] | React.ReactElement | null; testID?: string; } const ListContainer = ({ children, ...props }: IListContainer) => ( {children} ); ListContainer.displayName = 'List.Container'; export default ListContainer;