import { Button, Heading, Row, Section, Text } from "@react-email/components";
import Base from "./base";
export type Generic_NewMail = {
mailType: "generic";
props: GenericProps;
};
type GenericProps = {
title: string;
noreply?: boolean;
testo: string;
link?: {
href: string;
label?: string;
};
};
const Generic = ({
title,
noreply = false,
testo,
link = undefined,
}: GenericProps) => {
return (
<>
{title}
>
);
};
export default Generic;