startit/oppgaver/uke6/8ball/view.js

7 lines
133 B
JavaScript
Raw Normal View History

2024-09-13 13:06:19 +02:00
updateView();
function updateView(){
let html = /*HTML*/ `
<div id="ball">8-ball</div>
`;
app.innerHTML = html;
}