Created
September 25, 2019 10:49
-
-
Save vertcitron/542964f3eb34af7b721fc03ee7fd8378 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') | |
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