severo's picture
severo HF Staff
add Dockerfile and the app
e3c0beb
raw
history blame contribute delete
160 Bytes
<script lang="ts">
let count: number = 0
const increment = () => {
count += 1
}
</script>
<button on:click={increment}>
count is {count}
</button>