import { Section, Text } from '@react-email/components'; import * as React from 'react'; import { content, paragraph } from '../css/styles'; import { EmailButton, MailBody } from '../partials/partials'; interface Props { actorName: string; pageTitle: string; spaceName: string; pageUrl: string; } export const ApprovalRequestedEmail = ({ actorName, pageTitle, spaceName, pageUrl, }: Props) => { return (
Hi there, {actorName} submitted{' '} {pageTitle} in the{' '} {spaceName} space for your approval.
Review page
); }; export default ApprovalRequestedEmail;