import { Body, Html, Head, Container, Img, Tailwind } from '@react-email/components'; import { Text, Button } from '@react-email/components'; type EmailProps = { invitedBy: string; url: string; }; const Email = ({ invitedBy, url }: EmailProps) => { return ( officer.dev You're invited to officer.dev You have been invited by {invitedBy || ''} to join officer.dev. Click the button below to set up your account. ); }; export default Email;