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

My Notebooks

Categories
Tags
`; feather.replace(); } } customElements.define('custom-notes-sidebar', CustomNotesSidebar);