import React from 'react'; import { Text, View, FlatList, TextInput, TouchableOpacity, } from 'react-native'; import Icon from 'react-native-vector-icons/Ionicons'; import { getStyles } from './leads.styles'; import { MOCK_LEADS } from '../../mock-data/leads'; import { useTheme } from '../../theme'; export const LeadsScreen = () => { const { theme: colors } = useTheme(); const styles = getStyles(colors); return ( item.id} contentContainerStyle={styles.listContent} renderItem={({ item }) => ( {item.name} {item.company} {item.status} {item.email} )} /> ); };