index.tsx 446 B

123456789101112131415161718
  1. import { View, Text } from 'react-native';
  2. export default function HomeScreen() {
  3. return (
  4. <View
  5. style={{
  6. flex: 1,
  7. flexDirection: 'column',
  8. justifyContent: 'center',
  9. alignItems: 'center',
  10. paddingHorizontal: 4
  11. }}
  12. >
  13. <Text>You've logged in to: </Text>
  14. <Text>Home Page</Text>
  15. </View>
  16. );
  17. }