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

7 lines
159 B
Svelte
Raw Normal View History

<script type="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} />