import {
Body,
Column,
Container,
Html,
Img,
Row,
} from "@react-email/components";
import { Tailwind } from "@react-email/components";
import { Text, Heading } from "./post";
import {
confirmEmailTailwindConfig,
MailHead,
makeStaticUrl,
} from "./shared";
export const LeafletConfirmEmail = (props: {
code?: string;
assetsBaseUrl?: string;
}) => {
const leafletSrc = makeStaticUrl(
props.assetsBaseUrl ?? "https://leaflet.pub",
)("leaflet.png");
return (
Welcome to Leaflet!{" "}
Verify your email with this code
{props.code ?? "000000"}
);
};
export default LeafletConfirmEmail;