21 lines
No EOL
432 B
TypeScript
21 lines
No EOL
432 B
TypeScript
import { StyleSheet, View, Text } from 'react-native';
|
|
|
|
export default function Page() {
|
|
return (
|
|
<View style={styles.container}>
|
|
<Text style={styles.text}>Home</Text>
|
|
</View>
|
|
);
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
alignItems: "center",
|
|
justifyContent: "center",
|
|
},
|
|
text: {
|
|
fontSize: 70,
|
|
fontWeight: "bold"
|
|
}
|
|
}); |