chat-with-df / src /lib /Counter.svelte
abidlabs's picture
abidlabs HF Staff
Duplicate from static-templates/svelte
844d67f verified
raw
history blame contribute delete
167 Bytes
<script lang="ts">
let count: number = $state(0)
const increment = () => {
count += 1
}
</script>
<button onclick={increment}>
count is {count}
</button>