import React from 'react'; import { View, Text, Image, StyleSheet, TouchableOpacity } from 'react-native'; const UserHomeScreen = () => { return ( UserHomeScreen ); }; // Styles const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: '#FFFFFF', alignItems: 'center', justifyContent: 'center', paddingHorizontal: 20, }, welcomeText: { fontSize: 24, fontWeight: 'bold', color: '#000000', marginBottom: 20, }, }); export default UserHomeScreen;