import { Button, Heading, Row, Section, Text } from "@react-email/components"; import Base from "./base"; export type PwResetLink_NewMail = { mailType: "pwResetLink"; props: PwResetLinkProps; }; type PwResetLinkProps = { resetlink: string; }; const PwResetLink = ({ resetlink }: PwResetLinkProps) => { return ( <> Link Reset Password
Abbiamo ricevuto la tua richiesta di reset password, clicca sul link sottostante per procedere.
); }; export default PwResetLink;