chat-ui / src /routes /r /[id] /+page.svelte
coyotte508's picture
coyotte508 HF staff
Share convos (#35)
fc15a4c unverified
raw
history blame
No virus
224 Bytes
<script lang="ts">
import ChatWindow from '$lib/components/chat/ChatWindow.svelte';
import type { PageData } from './$types';
export let data: PageData;
</script>
<ChatWindow disabled={true} messages={data.messages} />