import * as React from 'react'; import Box from '@mui/joy/Box'; import Typography from '@mui/joy/Typography'; import Avatar from '@mui/joy/Avatar'; import List from '@mui/joy/List'; import ListDivider from '@mui/joy/ListDivider'; import ListItem from '@mui/joy/ListItem'; import ListItemButton, { listItemButtonClasses } from '@mui/joy/ListItemButton'; import ListItemDecorator from '@mui/joy/ListItemDecorator'; const data = [ { name: 'Alex Jonnold', avatar: 'https://i.pravatar.cc/40?img=3', avatar2x: 'https://i.pravatar.cc/80?img=3', date: '21 Oct 2022', title: 'Details for our Yosemite Park hike', body: 'Hello, my friend! So, it seems that we are getting there…', color: 'warning.400', }, { name: 'Pete Sand', avatar: 'https://i.pravatar.cc/40?img=4', avatar2x: 'https://i.pravatar.cc/80?img=4', date: '06 Jul 2022', title: 'Tickets for our upcoming trip', body: 'Good day, mate! It seems that our tickets just arrived…', color: 'success.400', }, { name: 'Kate Gates', avatar: 'https://i.pravatar.cc/40?img=5', avatar2x: 'https://i.pravatar.cc/80?img=5', date: '16 May 2022', title: 'Brunch this Saturday?', body: "Hey! I'll be around the city this weekend, how about a…", color: 'primary.500', }, { name: 'John Snow', avatar: 'https://i.pravatar.cc/40?img=7', avatar2x: 'https://i.pravatar.cc/80?img=7', date: '10 May 2022', title: 'Exciting News!', body: 'Hello there! I have some exciting news to share with you...', color: 'danger.500', }, { name: 'Michael Scott', avatar: 'https://i.pravatar.cc/40?img=8', avatar2x: 'https://i.pravatar.cc/80?img=8', date: '13 Apr 2022', title: 'Upcoming Product Launch', body: 'Dear customers and supporters, I am thrilled to announc...', color: 'danger.500', }, ]; export default function EmailList() { return ( {data.map((item, index) => ( {item.name} {item.date}
{item.title} {item.body}
))}
); }