mirror of
https://github.com/zadam/trilium.git
synced 2025-10-19 06:38:59 +02:00
chore(client/print): render title using preact
This commit is contained in:
parent
54724b8c58
commit
62855f4bb1
@ -1,4 +1,6 @@
|
||||
import { JSX } from "preact/jsx-runtime";
|
||||
import FNote from "./entities/fnote";
|
||||
import { render } from "preact";
|
||||
|
||||
async function main() {
|
||||
const noteId = window.location.pathname.split("/")[2];
|
||||
@ -7,13 +9,18 @@ async function main() {
|
||||
|
||||
if (!note) return;
|
||||
|
||||
let el: JSX.Element | null = null;
|
||||
if (note.type === "book") {
|
||||
handleCollection(note);
|
||||
el = handleCollection(note);
|
||||
}
|
||||
|
||||
render(el, document.body);
|
||||
}
|
||||
|
||||
function handleCollection(note: FNote) {
|
||||
console.log("Rendering collection.");
|
||||
return (
|
||||
<h1>{note.title}</h1>
|
||||
);
|
||||
}
|
||||
|
||||
main();
|
Loading…
x
Reference in New Issue
Block a user