import { container, footer, h1, logo, main } from '../css/styles'; import { Body, Container, Head, Html, Row, Section, Text, } from '@react-email/components'; import * as React from 'react'; interface MailBodyProps { children: React.ReactNode; } export function MailBody({ children }: MailBodyProps) { return ( {children} ); } export function MailHeader() { return (
{/* docmost */}
); } export function MailFooter() { return (
© {new Date().getFullYear()}, All Rights Reserved
); }