'use client' interface NotesPanelProps { notes: string[] } export function NotesPanel({ notes }: NotesPanelProps) { return (
{notes.length === 0 ? (

No notes yet. Use "To Notes" to save content here.

) : (
{notes.map((note, i) => (

{note}

))}
)}
) }