Spaces:
Build error
Build error
File size: 224 Bytes
fc15a4c |
1 2 3 4 5 6 7 8 9 |
<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} />
|