import { Box, Card, Link, Text } from 'theme-ui' export default function MailCard({ body, date, link }) { body = body.length > 130 ? body.substring(0, 130) + '...' : body return ( {date} — From Hack Club, to You {body} ) }