Created
September 25, 2019 12:27
-
-
Save vertcitron/59b13e78d849772358855de8d3c6ff5a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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