Added broken website for sync
This commit is contained in:
parent
6ba77599bb
commit
3732774c02
16 changed files with 1322 additions and 0 deletions
10
src/lib/Counter.svelte
Normal file
10
src/lib/Counter.svelte
Normal file
|
@ -0,0 +1,10 @@
|
|||
<script lang="ts">
|
||||
let count: number = 0
|
||||
const increment = () => {
|
||||
count += 10
|
||||
}
|
||||
</script>
|
||||
|
||||
<button on:scroll={increment}>
|
||||
count is {count}
|
||||
</button>
|
Loading…
Add table
Add a link
Reference in a new issue