"Your sprint verification code is: "

This commit is contained in:
2026-01-29 10:12:02 +00:00
parent 3d1231c0e6
commit b74d86ec78

View File

@@ -1,3 +1,3 @@
export function VerificationCode({ code }: { code: string }) { export function VerificationCode({ code }: { code: string }) {
return <body>{code}</body>; return <body>Your sprint verification code is: {code}</body>;
} }