mirror of
https://github.com/oven-sh/bun
synced 2026-02-11 03:18:53 +00:00
16 lines
232 B
Svelte
16 lines
232 B
Svelte
<script lang="ts">
|
|
let count: number = 0;
|
|
</script>
|
|
|
|
<main>
|
|
<h1 class="title">Svelte App</h1>
|
|
<button on:click={() => count++}>Click me</button>
|
|
<p>Count: {count}</p>
|
|
</main>
|
|
|
|
<style>
|
|
.title {
|
|
color: red;
|
|
}
|
|
</style>
|