import React from 'react'; import { ScrollView, StyleSheet } from 'react-native'; import { withTheme } from '../../theme'; import scrollPersistTaps from '../../utils/scrollPersistTaps'; const styles = StyleSheet.create({ container: { paddingVertical: 16 } }); interface IListContainer { children: React.ReactNode; testID?: string; } const ListContainer = React.memo(({ children, ...props }: IListContainer) => ( {children} )); ListContainer.displayName = 'List.Container'; export default withTheme(ListContainer);