import { Link, Stack } from 'expo-router';
import React from 'react';
import { StyleSheet, Text, View } from 'react-native';
export default function NotFoundScreen() {
return (
<>
This screen does not exist.
Go to home screen!
>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
alignItems: 'center',
justifyContent: 'center',
padding: 20,
},
title: {
fontSize: 20,
fontWeight: 'bold',
marginBottom: 10,
},
link: {
marginTop: 15,
paddingVertical: 15,
},
linkText: {
color: '#007AFF',
textDecorationLine: 'underline',
},
});