typst-app-clone / src /lib /Counter.svelte
fasdfsa's picture
init
c28680e
Raw
History Blame Contribute Delete
197 Bytes
<script lang="ts">
let count: number = $state(0)
const increment = () => {
count += 1
}
</script>
<button type="button" class="counter" onclick={increment}>
Count is {count}
</button>