import Markdown from 'markdown-to-jsx'; type Props = { notes: string; }; export function NotesDetails({ notes }: Props) { return {notes}; }