import * as React from 'react'; import Box from '@mui/joy/Box'; import Chip from '@mui/joy/Chip'; import Card from '@mui/joy/Card'; import CardOverflow from '@mui/joy/CardOverflow'; import Sheet from '@mui/joy/Sheet'; import Typography from '@mui/joy/Typography'; import Button from '@mui/joy/Button'; import Snackbar from '@mui/joy/Snackbar'; import AspectRatio from '@mui/joy/AspectRatio'; import Divider from '@mui/joy/Divider'; import Avatar from '@mui/joy/Avatar'; import Tooltip from '@mui/joy/Tooltip'; import DeleteRoundedIcon from '@mui/icons-material/DeleteRounded'; import ForwardToInboxRoundedIcon from '@mui/icons-material/ForwardToInboxRounded'; import FolderIcon from '@mui/icons-material/Folder'; import ReplyRoundedIcon from '@mui/icons-material/ReplyRounded'; import CheckCircleRoundedIcon from '@mui/icons-material/CheckCircleRounded'; export default function EmailContent() { const [open, setOpen] = React.useState([false, false, false]); const handleSnackbarOpen = (index: number) => { const updatedOpen = [...open]; updatedOpen[index] = true; setOpen(updatedOpen); }; const handleSnackbarClose = (index: number) => { const updatedOpen = [...open]; updatedOpen[index] = false; setOpen(updatedOpen); }; return ( Alex Jonnold 21 Oct 2022 handleSnackbarClose(0)} anchorOrigin={{ vertical: 'bottom', horizontal: 'right' }} startDecorator={} endDecorator={ } > Your message has been sent. handleSnackbarClose(1)} anchorOrigin={{ vertical: 'bottom', horizontal: 'right' }} startDecorator={} endDecorator={ } > Your message has been forwarded. handleSnackbarClose(2)} anchorOrigin={{ vertical: 'bottom', horizontal: 'right' }} startDecorator={} endDecorator={ } > Your message has been deleted. Personal } > Details for our Yosemite Park hike
From {}}> alex.jonnold@hike.com
to {}}> steve@mail.com
Hello, my friend!

So, it seems we are getting there! Our trip is finally here. As you know, I love Yosemite National Park, a lot of great climbers and explorers have made history there, so I'm very excited to bring you with me in this journey.

There are plenty of amazing things to see there, from internationally recognized granite cliffs, waterfalls, clear streams, giant sequoia groves, lakes, mountains, meadows, glaciers, and a lot o biological diversity. It is amazing that almost 95 percent of the park is designated wilderness. Yosemite is one of the largest and least fragmented habitat blocks in the Serra Nevada, and the park supports a fantastic diversity of plants and animals.

I really hope you love coming along with me, we will have an awesome time! I'm attaching a few pics I took on the last time I went there-get excited!

See you soon, Alex Jonnold
Attachments ({ display: 'flex', flexWrap: 'wrap', gap: 2, '& > div': { boxShadow: 'none', '--Card-padding': '0px', '--Card-radius': theme.vars.radius.sm, }, })} > Yosemite National Park Yosemite National Park
videos-hike.zip 100 MB
); }