export default function PatientSummaryCard({ summary }: { summary: Record }) { return (

Patient Summary

{JSON.stringify(summary, null, 2)}
); }