POWR/app/+not-found.tsx
2025-02-09 20:38:38 -05:00

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>
</>
);
}