For this exercise, what we need is a simple live wall for tracking currencies.
<script lang="ts"> let count: number = $state(0) const increment = () => { count += 1 } </script> <button onclick={increment}> count is {count} </button>