<h1>Pure JS effects demo</h1>
<script>
const box = scope()
const { define, htmlEffect } = box
box.count = 0
document.body.appendChild(htmlEffect(`Count: {{count}}`))
</script>
<br><br>
<button onclick="box.count++">Increment</button>