import { Navigate, useLocation } from 'react-router-dom'; import { useAuth } from './AuthContext'; import type { ReactNode } from 'react'; export function AuthGuard({ children }: { children: ReactNode }) { const { currentUser } = useAuth(); const location = useLocation(); if (!currentUser) { return ; } return <>{children}; }