mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2026-07-26 18:04:45 +10:00
50ba37a27f
* chore(release): v5.1.0 * feat: implement resume thumbnails * fix: remove unused mcp tools * docs: fix formatting of docs
20 lines
618 B
TypeScript
20 lines
618 B
TypeScript
import { VerifyEmailChange } from "./auth";
|
|
|
|
interface VerifyEmailChangeTemplateProps {
|
|
url: string;
|
|
previousEmail: string;
|
|
newEmail: string;
|
|
}
|
|
|
|
const VerifyEmailChangeTemplate = ({ url, previousEmail, newEmail }: VerifyEmailChangeTemplateProps) => {
|
|
return <VerifyEmailChange url={url} previousEmail={previousEmail} newEmail={newEmail} />;
|
|
};
|
|
|
|
export default Object.assign(VerifyEmailChangeTemplate, {
|
|
PreviewProps: {
|
|
url: "https://localhost:3000/auth/verify-email-change?token=example-token",
|
|
previousEmail: "old@example.com",
|
|
newEmail: "new@example.com",
|
|
} satisfies VerifyEmailChangeTemplateProps,
|
|
});
|