import CustomTable from "@/app/component/CustomTable"; import CircularLoading from "@/app/component/loading/Circular"; import TextLoading from "@/app/component/loading/Text"; import { TableCell, TableRow } from "@mui/material"; function Disease({ data }) { const tableHead = ["شماره", "اسم", "وضعیت"]; const centerTable = [0, 4]; return (
{data.map((row, idx) => ( {idx + 1} {row.name} {row.status} ))}
); } export default Disease;