Spaces:
Runtime error
Runtime error
File size: 142 Bytes
1b06101 |
1 2 3 4 5 6 7 8 9 10 11 |
<script>
let count = 0
const increment = () => {
count += 1
}
</script>
<button on:click={increment}>
count is {count}
</button>
|