import { Container } from '@react-email/container'; import { Html } from '@react-email/html'; import { Section } from '@react-email/section'; import { Text } from '@react-email/text'; import { Footer } from './components/footer'; type EmailProps = { title: string; body: JSX.Element; }; export default function Email({ title, body }: EmailProps) { return (

{title}

{body}
); }