mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2026-07-27 02:14:50 +10:00
50ba37a27f
* chore(release): v5.1.0 * feat: implement resume thumbnails * fix: remove unused mcp tools * docs: fix formatting of docs
16 lines
384 B
TypeScript
16 lines
384 B
TypeScript
import { VerifyEmail } from "./auth";
|
|
|
|
interface VerifyEmailTemplateProps {
|
|
url: string;
|
|
}
|
|
|
|
const VerifyEmailTemplate = ({ url }: VerifyEmailTemplateProps) => {
|
|
return <VerifyEmail url={url} />;
|
|
};
|
|
|
|
export default Object.assign(VerifyEmailTemplate, {
|
|
PreviewProps: {
|
|
url: "https://localhost:3000/auth/verify-email?token=example-token",
|
|
} satisfies VerifyEmailTemplateProps,
|
|
});
|