open-webui/src/routes/(app)/c/[id]/+page.svelte

7 lines
159 B
Svelte
Raw Normal View History

2024-05-21 17:45:03 +00:00
<script lang="ts">
import Chat from '$lib/components/chat/Chat.svelte';
2023-12-27 00:35:01 +00:00
import { page } from '$app/stores';
2023-11-20 01:47:07 +00:00
</script>
<Chat chatIdProp={$page.params.id} />