import { Google, Apple, Sms, Trash, CloseSquare } from 'iconsax-react'; import { Box, Button, Typography, Dialog, DialogTitle, DialogContent, IconButton, TextField, } from '@mui/material'; import { useState } from 'react'; export function SocialMedia() { const [open, setOpen] = useState(false); const handleOpen = () => setOpen(true); const handleClose = () => setOpen(false); const emailList = [ { email: 'emailtemp@email.com', provider: 'email' }, { email: 'emailtemp@gmail.com', provider: 'google' }, ]; return (
ایمیل و شبکه‌های اجتماعی من این اطلاعات شما صرفاً برای احراز هویت شما است و نزد هارمونی باقی می‌ماند {emailList.map((item, index) => ( {item.provider === 'google' && ( )} {item.provider === 'apple' && ( )} {item.provider === 'email' && ( )} {item.email} ۱ ماه پیش ))} افزودن ایمیل / سوشال یا
); }