import { Stack, router } from "expo-router"; import { useEffect, useState } from "react"; import AsyncStorage from "@react-native-async-storage/async-storage"; export default function RootLayout() { const [isLoading, setIsLoading] = useState(true); const [isLoggedIn, setIsLoggedIn] = useState(false); useEffect(() => { const checkAuth = async () => { const token = await AsyncStorage.getItem("authToken"); setIsLoggedIn(!!token); setIsLoading(false); }; checkAuth(); }, []); if (isLoading) return null; return ( {!isLoggedIn && } {isLoggedIn && } ); }