import { Text, View } from "react-native"; import { useAuth } from "../context/AuthContext"; export default function Index() { const { onLogout } = useAuth(); const user = "debil" return ( Welcome {user} { // The `app/(app)/_layout.tsx` will redirect to the sign-in screen. onLogout(); }} > Sign Out ); }