import { useNoteContext } from "./react/hooks" export default function NoteDetail() { const { note } = useNoteContext(); return

Note detail goes here! {note?.noteId}

}