open-webui/src/routes/(app)/c/[id]/+page.svelte
2024-05-21 18:46:03 +01:00

7 lines
159 B
Svelte

<script lang="ts">
import Chat from '$lib/components/chat/Chat.svelte';
import { page } from '$app/stores';
</script>
<Chat chatIdProp={$page.params.id} />