class SidebarRight extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = `
Sponsored
Learn Coding
codecademy.com
Contacts
Alice Freeman
Bob Martin
Charlie Kim
Diana Prince
Evan Wright
`; } } customElements.define('app-sidebar-right', SidebarRight);