import { Text, Section } from "@react-email/components"; import { EmailLayout } from "./layout"; interface Props { po: { poNumber: string; title: string }; note: string; } export function EditsRequestedEmail({ po, note }: Props) { return ( Your manager has requested edits on purchase order{" "} {po.poNumber}.
Title {po.title} Requested changes {note}
Please log in to PPMS, make the requested edits, and resubmit the order.
); } export default EditsRequestedEmail;