mirror of
https://github.com/DocNR/POWR.git
synced 2025-04-22 16:51:33 +00:00
19 lines
412 B
TypeScript
19 lines
412 B
TypeScript
import { Link, Stack } from 'expo-router';
|
|
import { View } from 'react-native';
|
|
import { Text } from '@/components/ui/text';
|
|
|
|
export default function NotFoundScreen() {
|
|
return (
|
|
<>
|
|
<Stack.Screen options={{ title: 'Oops!' }} />
|
|
<View>
|
|
<Text>This screen doesn't exist.</Text>
|
|
|
|
<Link href='/'>
|
|
<Text>Go to home screen!</Text>
|
|
</Link>
|
|
</View>
|
|
</>
|
|
);
|
|
}
|