import { useState } from "react"; import CustomTable from "@/app/component/CustomTable"; import Head from "@/components/dashboard/userAccount/components/Head"; import ModalAddRelatives from "./modal"; import ItemRelatives from "./ItemRelatives"; function Relatives({ data, changeData, loading, updateData }) { const relatives = data && data.other && data.other.relatives; const tableHead = ["ردیف", "نام", "نسبت", "شماره تماس", "آدرس", ""]; const centerTable = [0]; const [open, setOpen] = useState(false); return (
{relatives?.length ? ( {relatives?.map((row, idx) => ( ))} ) : (

هیچ داروی مصرفی وجود ندارد!

)}
); } export default Relatives;