import { msg } from '@lingui/core/macro'; import { useLingui } from '@lingui/react'; import { Body, Container, Head, Html, Preview, Section } from '../components'; import { TemplateBrandingLogo } from '../template-components/template-branding-logo'; import type { TemplateConfirmationEmailProps } from '../template-components/template-confirmation-email'; import { TemplateConfirmationEmail } from '../template-components/template-confirmation-email'; import { TemplateFooter } from '../template-components/template-footer'; export const ConfirmEmailTemplate = ({ confirmationLink, assetBaseUrl = 'http://localhost:3002', }: TemplateConfirmationEmailProps) => { const { _ } = useLingui(); const previewText = msg`Please confirm your email address`; return ( {_(previewText)}
); }; export default ConfirmEmailTemplate;