mirror of
https://github.com/woutdp/live_svelte
synced 2026-05-23 17:09:21 +00:00
8 lines
134 B
Svelte
8 lines
134 B
Svelte
<script>
|
|
import store from "./store"
|
|
</script>
|
|
|
|
<label>
|
|
<input type="checkbox" bind:checked={$store} />
|
|
{$store}
|
|
</label>
|