import { Section, Text } from 'react-email'; 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; accessLabel: string; } export const PermissionGrantedEmail = ({ actorName, pageTitle, pageUrl, accessLabel, }: Props) => { return (
Hi there, {actorName} gave you {accessLabel} access to{' '} {pageTitle}.
View
); }; export default PermissionGrantedEmail;