8 lines
197 B
Svelte
8 lines
197 B
Svelte
<script lang="ts">
|
|
import { SettingsSection } from '$lib/components';
|
|
</script>
|
|
|
|
<div class="container mx-auto p-4">
|
|
<h1 class="mb-4 text-2xl font-bold">Settings</h1>
|
|
<SettingsSection />
|
|
</div>
|