import React from 'react' import { SafeAreaView, ScrollView, StatusBar, Text, Button, useColorScheme, View, } from 'react-native' import type {RootStackScreenProps} from '../routes/types' export const NotFound = ({navigation}: RootStackScreenProps<'NotFound'>) => { const isDarkMode = useColorScheme() === 'dark' return ( Page not found