class Pet extends HTMLElement { constructor() { super(); const shadow = this.attachShadow({ mode: 'closed' }); const root = document.createElement('section'); const name = this.getAttribute('name') root.innerHTML = `

Pet

Name
${name}
`; shadow.appendChild(root) } } customElements.define('pet-component', Pet);