import React from 'react' import { Text, View, TouchableOpacity } from 'react-native' import { SafeAreaView } from 'react-native-safe-area-context' import { styles } from './Home.styles' interface Props { onNextPressed: () => void } export const Home: React.FunctionComponent = ({ onNextPressed }) => { return ( Welcome to the Nona Template Application. Click the button below to navigate to a second screen. Press Me ) }