Menu
Agent demoPlaygroundExamplesDocsFirst widgetAPI referenceWhy bundles

SVELTE EDGE

Counter

runes · state

Counter

A reactive counter using Svelte 5 runes.

<script>
  let count = $state(0);
</script>

<button onclick={() => count += 1}>count: {count}</button>

<style>
  button { font: 700 16px system-ui; padding: 12px 18px; border: 0; border-radius: 12px; background: #ff5a1f; color: white; }
</style>