Skip to content

Instantly share code, notes, and snippets.

@vertcitron
Created September 25, 2019 10:26
Show Gist options
  • Save vertcitron/43d5c4cbfce0f3ccbb0f12218ed54026 to your computer and use it in GitHub Desktop.
Save vertcitron/43d5c4cbfce0f3ccbb0f12218ed54026 to your computer and use it in GitHub Desktop.
import Component from './Component'
export default class Button extends Component {
readonly element: HTMLButtonElement
constructor (text: string) {
super()
this.element = document.createElement('button')
this.element.textContent = text
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment