32 lines
609 B
TypeScript
32 lines
609 B
TypeScript
import React from 'react';
|
|
import { View, Text, Image, StyleSheet, TouchableOpacity } from 'react-native';
|
|
|
|
const UserHomeScreen = () => {
|
|
return (
|
|
<View style={styles.container}>
|
|
<Text style={styles.welcomeText}>UserHomeScreen</Text>
|
|
|
|
</View>
|
|
);
|
|
};
|
|
|
|
// 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;
|