Spaces:
Sleeping
Sleeping
File size: 149 Bytes
63bca44 | 1 2 3 4 5 6 7 8 9 10 11 | <script>
let count = $state(0)
const increment = () => {
count += 1
}
</script>
<button onclick={increment}>
count is {count}
</button>
|