mirror of
https://github.com/woutdp/live_svelte
synced 2026-05-24 01:18:53 +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>
|