import React from "react"; import { ActivityIndicator, View } from "react-native"; import { useAuth } from "../context/AuthContext"; import { AuthNavigator } from "./AuthNavigator"; import { MainNavigator } from "./MainNavigator"; export function RootNavigator() { const { isLoading, isAuthenticated } = useAuth(); if (isLoading) { return ( ); } if (!isAuthenticated) { return ; } return ; }