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

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