summaryrefslogtreecommitdiffhomepage
path: root/src/lib/Counter.svelte
blob: 4395790269b061c5c79d73b42c3da2364f2d853a (plain)
1
2
3
4
5
6
7
8
9
10
<script lang="ts">
  let count: number = $state(0)
  const increment = () => {
    count += 1
  }
</script>

<button class="counter" onclick={increment}>
  Count is {count}
</button>