Skip to content

Instantly share code, notes, and snippets.

@vertcitron
Created September 25, 2019 12:27
Show Gist options
  • Save vertcitron/59b13e78d849772358855de8d3c6ff5a to your computer and use it in GitHub Desktop.
Save vertcitron/59b13e78d849772358855de8d3c6ff5a to your computer and use it in GitHub Desktop.
import Button from "./components/Button"
const appElement = document.getElementById('app')
const button = new Button('My Button')
// click handler assignation :
button.onClick = () => {
alert('My Button was clicked !')
}
function renderApp() {
if (appElement !== null) {
appElement.innerHTML = ''
button.render(appElement)
}
}
renderApp()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment