2019-09-23 01:56:39 +02:00
|
|
|
<script>
|
2020-02-03 10:50:30 +01:00
|
|
|
import IconButton from "./common/IconButton.svelte"
|
|
|
|
import { store } from "./builderStore"
|
|
|
|
import UserInterfaceRoot from "./userInterface/UserInterfaceRoot.svelte"
|
|
|
|
import { fade } from "svelte/transition"
|
2019-09-23 01:56:39 +02:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<div class="root">
|
2020-02-03 10:50:30 +01:00
|
|
|
<div class="content uk-container">
|
2019-09-23 01:56:39 +02:00
|
|
|
|
2020-02-03 10:50:30 +01:00
|
|
|
<h1>Settings</h1>
|
2019-09-23 01:56:39 +02:00
|
|
|
|
2020-02-03 10:50:30 +01:00
|
|
|
<label>
|
|
|
|
<input
|
|
|
|
type="checkbox"
|
|
|
|
class="uk-checkbox"
|
|
|
|
bind:checked={$store.useAnalytics} />
|
|
|
|
Send analytics
|
|
|
|
</label>
|
2019-09-23 01:56:39 +02:00
|
|
|
|
2020-02-03 10:50:30 +01:00
|
|
|
</div>
|
2019-09-23 01:56:39 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
2020-02-03 10:50:30 +01:00
|
|
|
</style>
|