26 lines
502 B
TypeScript
26 lines
502 B
TypeScript
import { Link, Stack } from 'expo-router';
|
|
import { StyleSheet } from 'react-native';
|
|
|
|
import { ThemedText } from '@/components/ThemedText';
|
|
import { Text } from '@react-navigation/elements';
|
|
export default function NotFoundScreen() {
|
|
return (
|
|
<>
|
|
<Text>Not Found</Text>
|
|
</>
|
|
);
|
|
}
|
|
|
|
const styles = StyleSheet.create({
|
|
container: {
|
|
flex: 1,
|
|
alignItems: 'center',
|
|
justifyContent: 'center',
|
|
padding: 20,
|
|
},
|
|
link: {
|
|
marginTop: 15,
|
|
paddingVertical: 15,
|
|
},
|
|
});
|