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; pageUrl: string; } export const CommentResolvedEmail = ({ actorName, pageTitle, pageUrl, }: Props) => { return (
Hi there, {actorName} resolved a comment on{' '} {pageTitle}.
View
); }; export default CommentResolvedEmail;