aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/examples/with-svelte/packages/ui/components/MyCounterButton.svelte
blob: f72fe9feb4e446ad0120c02f4dbdd485a32037a1 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
<script lang="ts">
  let count = 0;

  function handleClick() {
    count += 1;
  }
</script>

<button on:click="{handleClick}">
  clicks: {count}
</button>