ai / src /routes /(app) /c /[id] /+page.svelte
github-actions[bot]
GitHub deploy: 54420f530001a038286f162143e7239a92a97ddb
6dd477f
raw
history blame contribute delete
159 Bytes
<script lang="ts">
import Chat from '$lib/components/chat/Chat.svelte';
import { page } from '$app/stores';
</script>
<Chat chatIdProp={$page.params.id} />