class CustomSidebar extends HTMLElement { connectedCallback() { this.attachShadow({ mode: 'open' }); this.shadowRoot.innerHTML = `

EduLoom

`; } } customElements.define('custom-sidebar', CustomSidebar);