import { Text, View } from "react-native"; import { useAppSelector } from "@/store/hooks"; import { selectIsMobile } from "@/store/screen/screenSizeSlice"; const Inbox = () => { const isMobile = useAppSelector(selectIsMobile); return ( Inbox This is the Inbox tab content. It would typically show application errors, exceptions, and critical issues that need attention. ); }; export default Inbox;