/* Add custom Js code below */ class CustomMainMenu extends HTMLElement { connectedCallback() { this.innerHTML = ` `; } } if (!customElements.get('custom-main-menu')) { customElements.define('custom-main-menu', CustomMainMenu); }