import React from "react" import { EmailLayout } from "./email-layout" interface OTPEmailProps { otp: string } export const OTPEmail: React.FC = ({ otp }) => (

🔑 Your TaxHacker verification code

Your verification code is:

{otp}

This code will expire in 10 minutes.

If you didn't request this code, please ignore this email.

)