Нема описа

HomeScreen.js 526B

123456789101112131415161718192021
  1. import React from "react";
  2. import { StyleSheet, View, Text, Button } from 'react-native';
  3. import { globalStyles } from "../styles/global";
  4. export default function HomeScreen({ navigation }) {
  5. const pressHandler = () => {
  6. navigation.navigate('Pinpage')
  7. }
  8. return (
  9. <View style = {globalStyles.container}>
  10. <Text style = {globalStyles.tittleText}>Home Screen</Text>
  11. <Button title='Ir a pagina de pin' onPress={pressHandler} />
  12. </View>
  13. )
  14. }