{ class AudioPlayer extends HTMLElement{ constructor(){ super() this.attachShadow({ mode: 'open' }); this.render(); } render(){ this.shadowRoot.innerHTML = ` `; } } customElements.define('audio-player', AudioPlayer) }