chore(react/type_widget): start with fresh note detail

This commit is contained in:
Elian Doran
2025-09-19 16:53:31 +03:00
parent 891e6b9751
commit 3d64c320fb
2 changed files with 8 additions and 2 deletions

View File

@@ -0,0 +1,6 @@
import { useNoteContext } from "./react/hooks"
export default function NoteDetail() {
const { note } = useNoteContext();
return <p>Note detail goes here! {note?.noteId}</p>
}