/* global React */ const { useState: useHeaderState } = React; function Header({ active = "home", onNav }) { const [open, setOpen] = useHeaderState(false); const items = [ ["home", "Accueil"], ["services", "Services"], ["realisations", "Réalisations"], ["about", "À propos"], ["contact", "Contact"], ]; const go = (k) => { setOpen(false); onNav(k); }; return ( <>
{ e.preventDefault(); go("home"); }}> FENNEC { e.preventDefault(); go("contact"); }}> Prendre rendez-vous
); } window.Header = Header;