summaryrefslogtreecommitdiffstats
path: root/components/site-greeting.js
blob: 098b5faaef7e78bb5d5c15964e248573d8c25e4e (plain) (blame)
1
2
3
4
5
6
7
8
9
// Example web component — replace or delete this file.
class SiteGreeting extends HTMLElement {
  connectedCallback() {
    const name = this.getAttribute('name') || 'world'
    this.textContent = `Hello, ${name}!`
  }
}

customElements.define('site-greeting', SiteGreeting)