import { Button, Section, Text } from '@react-email/components'; import * as React from 'react'; import EmailLayout, { bodyText, button, buttonContainer, footerText } from './components/EmailLayout'; export const PasswordReset = () => { return ( You have requested a password reset for your Probo account. Click the button below to reset your password:
If you did not request this password reset, please ignore this email.
); }; export default PasswordReset;