import { Body, Container, Head, Html, Preview, Section, Text, Tailwind, Img, Hr, } from "@react-email/components"; import type { JSX } from "react"; const Base = ({ children, preview, noreply, }: { children: JSX.Element; preview: string; noreply?: boolean; }) => { return ( {preview} Infoalloggi.it

{children}
{noreply && ( Questo รจ un messaggio automatico, per favore non rispondere a questa email. )}
Arcenia S.r.l. Sede legale: Via Beata Giovanna 1, Bassano del Grappa (VI)
); }; export default Base;