import { Section, Text } from '@react-email/components'; import * as React from 'react'; import { content, paragraph } from '../css/styles'; import { MailBody } from '../partials/partials'; interface Props { username?: string; } export const ChangePasswordEmail = ({ username }: Props) => { return (
Hi {username}, This is a confirmation that your password has been changed.
); }; export default ChangePasswordEmail;