import React from 'react'; import { View, Text, TouchableOpacity, StyleSheet } from 'react-native'; export const UserNav: React.FC = () => { return ( John Doe john@example.com ); }; const styles = StyleSheet.create({ container: { flexDirection: 'row', alignItems: 'center', padding: 10, }, userInfo: { marginLeft: 10, flex: 1, }, userName: { fontWeight: 'bold', }, userEmail: { color: 'gray', }, });