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