Files
illusory-iotam/apps/frontend/src/lib/components/molecules/max-width-wrapper.svelte
user eee31e5b99 Replace front proxy with new SvelteKit frontend app
- Remove the old Hono/Bun proxy server
- Add the new `apps/frontend` SvelteKit scaffold and telemetry hook
2026-03-28 18:12:43 +02:00

12 lines
257 B
Svelte

<script lang="ts">
import { cn } from "$lib/utils";
let { cls, children }: { cls: string; children: any } = $props();
let clsss = cn("mx-auto h-full w-full max-w-screen-xl", cls);
</script>
<div class={clsss}>
{@render children()}
</div>