import React from 'react' import { Text, TouchableOpacity, View } from 'react-native' import { SafeAreaView } from 'react-native-safe-area-context' import { styles } from './SecondScreen.styles' interface Props { onNextPressed: () => void } export const SecondScreen: React.FunctionComponent = ({ onNextPressed }) => { return ( This is another screen. click the button to go back to the Home screen. Press Me ) }