Files
pages/theseus_gui/src/routes/library/instance/[id]/settings.svelte
2022-04-16 17:23:36 -07:00

21 lines
506 B
Svelte

<script context="module" lang="ts">
</script>
<script lang="ts">
import { Checkbox, FormField, TextInput, Button } from "omorphia"
import GlobalSettings from "$components/GlobalSettings.svelte"
import TitledSection from "$components/TitledSection.svelte"
export let overrideGlobalSettings = false
</script>
<div class="section">
<TitledSection title="Override global settings" toggleable=true>
<GlobalSettings />
</TitledSection>
</div>
<style lang="postcss">
</style>