import CustomTable from "@/app/component/CustomTable"; import { TableCell, TableRow } from "@mui/material"; import Image from "next/image"; function List({ user }) { const tableHead = ['ردیف', 'شناسه', 'نام پزشک', 'تاریخ', 'ساعت', 'مبلغ (تومان)', 'وضعیت'] const centerTable = [0, 4, 5]; return (
{user.turns.map((row, idx) => ( {idx + 1} {row.id}
doctor {row.name}
{row.date} {row.time} {row.amount}
{row.status === 'success' ? 'پرداخت شده' : row.status === 'pending' ? 'در انتظار' : 'پرداخت نشده'}
))}
) } export default List