import { Link, Stack } from 'expo-router' import { StyleSheet } from 'react-native' import { ThemedText } from '@/components/themed-text' import { ThemedView } from '@/components/themed-view' import { SafeAreaView } from 'react-native-safe-area-context' export default function ModalScreen() { return ( ( // <> // This is a modal // // Go to home screen // // // ), }} /> This is a modal Go to home screen ) } const styles = StyleSheet.create({ container: { flex: 1, alignItems: 'center', justifyContent: 'center', padding: 20, }, link: { marginTop: 15, paddingVertical: 15, }, })