mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-13 04:45:19 +00:00
6 lines
170 B
Svelte
6 lines
170 B
Svelte
<script lang="ts">
|
|
import { page } from '$app/stores';
|
|
import NoteEditor from '$lib/components/notes/NoteEditor.svelte';
|
|
</script>
|
|
|
|
<NoteEditor id={$page.params.id} />
|