hard
+25 XP
FRONTEND

Protected Route

Create a ProtectedRoute component that redirects unauthenticated users.
You're exploring as a guest. Create a free account to save progress and submit solutions.
import { Navigate } from "react-router-dom";

function ProtectedRoute({ children }) {
  // Check auth and redirect
}