You've already forked AstralRinth
forked from didirus/AstralRinth
19 lines
426 B
Svelte
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>
|