budibase/packages/builder/src/Settings.svelte

27 lines
522 B
Svelte
Raw Normal View History

2019-09-23 01:56:39 +02:00
<script>
import IconButton from "components/common/IconButton.svelte"
import { store } from "builderStore"
import UserInterfaceRoot from "components/userInterface/UserInterfaceRoot.svelte"
2020-02-03 10:50:30 +01:00
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>