Files
landing/src/lib/Counter.svelte
snusxd 15ff9418d7 init
2026-02-26 17:24:37 +03:00

11 lines
167 B
Svelte

<script lang="ts">
let count: number = $state(0)
const increment = () => {
count += 1
}
</script>
<button onclick={increment}>
count is {count}
</button>