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