import { StatusBar } from 'expo-status-bar'; import { StyleSheet, Text, View } from 'react-native'; const ScreenProfile = ({ navigation }) => { return ( Ini halaman Profile ); } const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: '#fff', alignItems: 'center', justifyContent: 'center', }, }); export default ScreenProfile;