feat: add svelte

This commit is contained in:
Mauricio Siu
2024-06-30 19:57:48 -06:00
parent 415c719b93
commit 0bb2a0b1e3
16 changed files with 286 additions and 0 deletions

View File

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