import { Box, Typography } from '@mui/material'; export default function PhoneDisplay({ phones, }: { phones: { phone: string; time: string }[]; }) { return ( {phones.map((item, index) => ( {item.phone} {item.time} ))} ); }