Spaces:
Build error
Build error
File size: 281 Bytes
20c8fc2 | 1 2 3 4 5 6 7 8 9 10 | import React from "react";
import { Navigate } from "react-router-dom";
import { useAuth } from "../contexts/AuthContext";
export default function PrivateRoute({ children }) {
const { currentUser } = useAuth();
return currentUser ? children : <Navigate to="/login" />;
}
|