23 lines
463 B
JavaScript
23 lines
463 B
JavaScript
import { StatusBar } from 'expo-status-bar';
|
|
import { StyleSheet, Text, View } from 'react-native';
|
|
|
|
const ScreenSuhu = ({ navigation }) => {
|
|
return (
|
|
<View style={styles.container}>
|
|
<Text>Ini halaman Suhu</Text>
|
|
<StatusBar style="auto" />
|
|
</View>
|
|
);
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
backgroundColor: '#fff',
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
},
|
|
});
|
|
|
|
export default ScreenSuhu;
|