Skip to content

Instantly share code, notes, and snippets.

@vertcitron
Created September 25, 2019 10:49
Show Gist options
  • Save vertcitron/542964f3eb34af7b721fc03ee7fd8378 to your computer and use it in GitHub Desktop.
Save vertcitron/542964f3eb34af7b721fc03ee7fd8378 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')
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