This commit is contained in:
root
2026-08-15 05:27:48 +03:00
commit 39250c6fa6
18 changed files with 1664 additions and 0 deletions

5
src/lib/Counter.svelte Normal file
View File

@ -0,0 +1,5 @@
<script>
let count = $state(0)
</script>
<button type="button" class="counter" onclick={() => count++}>Count is {count}</button>