mirror of
https://github.com/formbricks/formbricks.git
synced 2026-01-27 03:09:10 -06:00
Co-authored-by: Piyush Gupta <piyushguptaa2z123@gmail.com> Co-authored-by: Matthias Nannt <mail@matthiasnannt.com>
15 lines
379 B
TypeScript
15 lines
379 B
TypeScript
import { Container, Heading, Text } from "@react-email/components";
|
|
import React from "react";
|
|
|
|
import { EmailFooter } from "../general/EmailFooter";
|
|
|
|
export const PasswordResetNotifyEmail = () => {
|
|
return (
|
|
<Container>
|
|
<Heading>Password changed</Heading>
|
|
<Text>Your password has been changed successfully.</Text>
|
|
<EmailFooter />
|
|
</Container>
|
|
);
|
|
};
|