import React from 'react' import { Html, Head, Preview, Body, Container, Heading, Text, Hr } from '@react-email/components' export type FeedbackEmailCopy = { preview: string heading: string body: string senderEmailLabel?: string senderEmail?: string messageLabel: string message: string marketingConsent: string footer: string } type FeedbackEmailProps = { copy: FeedbackEmailCopy } export default function FeedbackEmail({ copy }: FeedbackEmailProps) { return (