This commit is contained in:
nub31
2026-03-16 21:37:16 +01:00
parent 982c7f839a
commit 199868af38
17 changed files with 2406 additions and 0 deletions

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

@@ -0,0 +1,10 @@
<script lang="ts">
let count: number = $state(0)
const increment = () => {
count += 1
}
</script>
<button class="counter" onclick={increment}>
Count is {count}
</button>