adding embed routes for testing
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
import { type Component, createSignal } from "solid-js";
|
||||
import { NotepadView } from "./NotepadView";
|
||||
|
||||
export const EmbedNotesView: Component = () => {
|
||||
const [selectedNoteId, setSelectedNoteId] = createSignal<string | null>(null);
|
||||
|
||||
return (
|
||||
<div class="h-full w-full">
|
||||
<NotepadView
|
||||
selectedNoteId={selectedNoteId()}
|
||||
setSelectedNoteId={setSelectedNoteId}
|
||||
/>
|
||||
</div>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user