This commit is contained in:
2025-05-11 12:55:47 +03:00
parent 19ae834c99
commit 373820ec8a
31 changed files with 1132 additions and 3 deletions

View File

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