Files
Trilium/apps/client/src/widgets/note_title.tsx

12 lines
236 B
TypeScript
Raw Normal View History

import { useNoteContext } from "./react/hooks";
export default function NoteTitleWidget() {
const { ntxId, noteId, note } = useNoteContext();
return (
<>
<p>{ ntxId }{ noteId }</p>
</>
);
}