import { Box, Typography, Button } from '@mui/material'; import { useTranslation } from 'react-i18next'; import { CardContainer } from '@/components/CardContainer'; import { PageWrapper } from '../PageWrapper'; import React from 'react'; export function RecentLogins() { const { t } = useTranslation('setting'); const data = [ { id: 0, time: 'دقایقی پیش', device: 'asus i5 24i', ip: '192.168.1.1', current: true, }, { id: 1, time: '۲۲:۱۳ - ۱۴۰۴/۰۹/۰۹', device: 'samsung s23 ultra', ip: '192.220.1.1', current: false, }, ]; return ( {data.map((d) => ( {d.time} {d.device} {d.ip} {d.current && ( )} ))} ); }