Skip to content

Instantly share code, notes, and snippets.

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