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