mirror of
https://github.com/open-webui/open-webui
synced 2025-01-20 17:56:40 +00:00
7 lines
159 B
Svelte
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} />
|