18 lines
294 B
Svelte
Executable File
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] -->
|