import { Navigate, Outlet } from 'react-router-dom'; import { useAuth } from '../context/AuthContext'; export function ProtectedRoute() { const { isAuthenticated } = useAuth(); return isAuthenticated ? : ; }