/** * Top Bar Component * Contains logo, menu icon, and cart icon */ class TopBar extends HTMLElement { constructor() { super(); this.attachShadow({ mode: 'open' }); } connectedCallback() { this.render(); } render() { this.shadowRoot.innerHTML = `
`; } } customElements.define('top-bar', TopBar);