const app = document.querySelector('#app') if (app) { const p = document.createElement('p') p.textContent = 'Hello from Plugma!' app.appendChild(p) }