export default function MedicationTable({ meds }: { meds: Array> }) { return (

Medication Table

{meds.map((m, idx) => ( ))}
Drug Dose Indication
{String(m.drug ?? "-")} {String(m.dose_bucket ?? "-")} {String(m.indication ?? "-")}
); }