This commit is contained in:
vcoppe
2025-06-21 21:07:36 +02:00
parent f0230d4634
commit 1cc07901f6
803 changed files with 7937 additions and 6329 deletions

View File

@@ -1,12 +1,16 @@
<script lang="ts">
export let module;
import type { Component } from 'svelte';
let { module: Module }: { module: Component } = $props();
</script>
<div class="markdown flex flex-col gap-3">
<svelte:component this={module} />
<Module />
</div>
<style lang="postcss">
@reference "../../../app.css";
:global(.markdown) {
@apply text-muted-foreground;
}