import Link from "next/link"; import type { LinkedNote } from "@/lib/types"; export function LinkedNotesPanel({ linkedNotes }: { linkedNotes: LinkedNote[] }) { return (
Linked notes
{linkedNotes.map((linkedNote) => ( {linkedNote.title} {linkedNote.relationship} ))}
); }