import { Body, Container, Font, Head, Hr, Html, Img, Preview, Section, Tailwind, Text } from '@react-email/components'; import * as React from 'react'; import { ImmichFooter } from 'src/emails/components/footer.template'; interface ImmichLayoutProps { children: React.ReactNode; preview: string; } export const ImmichLayout = ({ children, preview }: ImmichLayoutProps) => ( {preview}
Immich
{children}

); ImmichLayout.PreviewProps = { preview: 'This is the preview shown on some mail clients', children: Email body goes here., } as ImmichLayoutProps; export default ImmichLayout;