mirror of
https://github.com/movie-web/native-app.git
synced 2025-09-13 09:43:25 +00:00
23 lines
618 B
TypeScript
23 lines
618 B
TypeScript
import { Link, Stack } from 'expo-router';
|
|
|
|
import { StyledText, StyledView } from '../components/ui/Styled';
|
|
|
|
export default function NotFoundScreen() {
|
|
return (
|
|
<>
|
|
<Stack.Screen options={{ title: 'Oops!' }} />
|
|
<StyledView className="flex-1 items-center justify-center p-5">
|
|
<StyledText className="text-lg font-bold">
|
|
This screen doesn't exist.
|
|
</StyledText>
|
|
|
|
<Link href="/" className="mt-4 py-4">
|
|
<StyledText className="text-sm text-sky-500">
|
|
Go to home screen!
|
|
</StyledText>
|
|
</Link>
|
|
</StyledView>
|
|
</>
|
|
);
|
|
}
|