mirror of
https://github.com/zadam/trilium.git
synced 2025-11-10 23:35:50 +01:00
7 lines
184 B
TypeScript
7 lines
184 B
TypeScript
|
|
import { useNoteContext } from "./react/hooks"
|
||
|
|
|
||
|
|
export default function NoteDetail() {
|
||
|
|
const { note } = useNoteContext();
|
||
|
|
return <p>Note detail goes here! {note?.noteId}</p>
|
||
|
|
}
|