import React from 'react' import { Html, Head, Preview, Body, Container, Heading, Text, Hr } from '@react-email/components' export type AdminNotificationCopy = { preview: string heading: string body: string marketingConsent: string footer: string } type AdminNotificationEmailProps = { copy: AdminNotificationCopy } export default function AdminNotificationEmail({ copy }: AdminNotificationEmailProps) { return ( {copy.heading} {copy.preview} {copy.heading} {copy.body} {copy.marketingConsent}
{copy.footer}
) }