1
0
Files
AstralRinth/theseus_gui/src/routes/library/instance/[id]/settings.svelte
2022-08-03 00:24:44 -07:00

19 lines
426 B
Svelte

<script context="module" lang="ts">
</script>
<script lang="ts">
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>