import { Navigate, Outlet } from "react-router-dom"; import { useAuth } from "src/hooks/AuthHooks"; export const PublicRoute = () => { const { isAuthenticated } = useAuth(); return isAuthenticated ? : ; };