Files
ss-tools/frontend/src/lib/Counter.svelte
2026-02-20 10:41:15 +03:00

18 lines
294 B
Svelte
Executable File

<!-- [DEF:Counter:Component] -->
<!--
@TIER: TRIVIAL
@PURPOSE: Simple counter demo component
@LAYER: UI
-->
<script>
let count = $state(0);
const increment = () => {
count += 1;
};
</script>
<button onclick={increment}>
count is {count}
</button>
<!-- [/DEF:Counter:Component] -->