mirror of
https://github.com/carbon-design-system/carbon-components-svelte.git
synced 2025-09-18 11:36:36 +00:00
7 lines
138 B
Svelte
7 lines
138 B
Svelte
<script>
|
|
import { Button } from "../../src";
|
|
|
|
let count = 0;
|
|
</script>
|
|
|
|
<Button on:click="{() => count++}">Click me: {count}</Button>
|