Skip to content

Instantly share code, notes, and snippets.

View cpg-studio's full-sized avatar

cpg-studio

  • Joined Sep 30, 2025
View GitHub Profile
class MyAccordion extends HTMLElement {
constructor() {
super();
this.attachShadow({ mode: 'open' });
}
connectedCallback() {
this.shadowRoot.innerHTML = `
<style>
/* All the CSS styles go inside here */