import { View, Text } from "react-native"; import { Button } from "react-native-paper"; import { router } from "expo-router"; import { useAppSelector } from "@/store/hooks"; import { selectIsMobile } from "@/store/screen/screenSizeSlice"; export const AccessDenied = () => { const isMobile = useAppSelector(selectIsMobile); return ( Access Denied You do not have permission to access this page. Please contact an administrator if you believe this is an error. ); };