Spaces:
Sleeping
Sleeping
| import { Navigate, Outlet } from 'react-router-dom'; | |
| import { useAuth } from '../context/AuthContext'; | |
| export function ProtectedRoute() { | |
| const { isAuthenticated } = useAuth(); | |
| return isAuthenticated ? <Outlet /> : <Navigate to="/login" replace />; | |
| } | |