summaryrefslogtreecommitdiffstats
path: root/assets/components/site-greeting.js
blob: c224132daabb918d103093368945ffeb9bf28a8a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
import { BaseElement } from "../lib/shared.js"

class SiteGreeting extends BaseElement {
  connectedCallback() {
    const name = this.getAttribute('name') || 'world'
    this.textContent = `Hello, ${name}!`
  }
}

define('site-greeting', SiteGreeting)