import React from 'react'; import { useCookieConsent } from '../../contexts/CookieConsentContext'; const CookiePreferencesLink: React.FC = () => { const { hasDecided } = useCookieConsent(); if (!hasDecided) { return null; } const handleClick = () => { window.dispatchEvent(new CustomEvent('open-cookie-preferences')); }; return ( ); }; export default CookiePreferencesLink;