Skip to content

Instantly share code, notes, and snippets.

@smpnjn
Created May 5, 2021 12:20
Show Gist options
  • Save smpnjn/7c328bbe586a0aedfe5543d61185432d to your computer and use it in GitHub Desktop.
Save smpnjn/7c328bbe586a0aedfe5543d61185432d to your computer and use it in GitHub Desktop.
class Paragraph extends HTMLElement {
constructor() {
super()
this.innerHTML = '<p>Hello</p>'
}
}
// define adds a custom element "alpha-paragraph" using the rules defined in the "Paragraph" class
customElements.define('alpha-paragraph', Paragraph);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment