import CustomTable from "@/app/component/CustomTable"; import TextLoading from "@/app/component/loading/Text"; import EditB from "@/components/icons/EditB"; import TrashB from "@/components/icons/TrashB"; import { Button, TableCell, TableRow } from "@mui/material"; import Head from "../../components/Head"; function Medications({ data }) { const tableHead = ["ردیف", "نام دارو", "دوز مصرفی", "تعداد و زمان مصرف", ""]; const centerTable = [0]; return (
{data.medications.map((row, idx) => ( {idx + 1} {row.name} {row.dose} {row.frequency}
))}
); } export default Medications;