import { Section, Text, Button } from '@react-email/components'; import * as React from 'react'; import { button, content, paragraph } from '../css/styles'; import { MailBody } from '../partials/partials'; interface Props { actorName: string; pageTitle: string; pageUrl: string; } export const CommentCreateEmail = ({ actorName, pageTitle, pageUrl, }: Props) => { return (
Hi there, {actorName} commented on{' '} {pageTitle}.
); }; export default CommentCreateEmail;