Update Header.jsx

This commit is contained in:
Arcade69 2025-04-12 14:44:15 +02:00 committed by GitHub
parent 48ee0e715d
commit 8aad4bdfb0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -8,7 +8,6 @@ function Header() {
const [isMenuOpen, setIsMenuOpen] = useState(false);
const [showAdminDropdown, setShowAdminDropdown] = useState(false);
// La fonction toggleAdminDropdown permet d'ouvrir/fermer le menu déroulant
const toggleAdminDropdown = () => {
setShowAdminDropdown((prev) => !prev);
};