1
0
Fork 0
mirror of synced 2024-08-07 22:28:15 +12:00
budibase/packages/builder/src/Settings.svelte

27 lines
506 B
Svelte
Raw Normal View History

2019-09-23 11:56:39 +12:00
<script>
2020-02-03 22:50:30 +13: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 11:56:39 +12:00
</script>
<div class="root">
2020-02-03 22:50:30 +13:00
<div class="content uk-container">
2019-09-23 11:56:39 +12:00
2020-02-03 22:50:30 +13:00
<h1>Settings</h1>
2019-09-23 11:56:39 +12:00
2020-02-03 22:50:30 +13:00
<label>
<input
type="checkbox"
class="uk-checkbox"
bind:checked={$store.useAnalytics} />
Send analytics
</label>
2019-09-23 11:56:39 +12:00
2020-02-03 22:50:30 +13:00
</div>
2019-09-23 11:56:39 +12:00
</div>
<style>
2020-02-03 22:50:30 +13:00
</style>