Skip to content

Instantly share code, notes, and snippets.

@indreklasn
Created July 7, 2019 12:47
Show Gist options
  • Save indreklasn/3003c841bf94dd47a25ac11190fdada2 to your computer and use it in GitHub Desktop.
Save indreklasn/3003c841bf94dd47a25ac11190fdada2 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