Skip to content

Instantly share code, notes, and snippets.

@indreklasn
Created September 13, 2019 12:32
Show Gist options
  • Save indreklasn/a60d9217073fb92b039a65197e1662ca to your computer and use it in GitHub Desktop.
Save indreklasn/a60d9217073fb92b039a65197e1662ca to your computer and use it in GitHub Desktop.
class WebComponentButton extends HTMLElement {
constructor() {
super()
this.addEventListener('click', () => {
console.log('click')
})
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment