import React from 'react'; import { Text, View, FlatList } from 'react-native'; import Icon from 'react-native-vector-icons/Ionicons'; import { getStyles } from './tickets.styles'; import { MOCK_TICKETS } from '../../mock-data/tickets'; import { useTheme } from '../../theme'; export const TicketsScreen = () => { const { theme: colors } = useTheme(); const styles = getStyles(colors); return ( item.id} contentContainerStyle={styles.listContent} renderItem={({ item }) => ( {item.ticketId} {item.subject} {item.severity} )} /> ); };