Files
medreport_mrb2b/packages/email-templates/src/components/footer.tsx
Danel Kungla 72f6f2b716 feat: create email template for TTO reservation confirmation
feat: implement order notifications service with TTO reservation confirmation handling

feat: create migration for TTO booking email webhook trigger
2025-09-30 16:05:43 +03:00

12 lines
314 B
TypeScript

import { Container, Section } from '@react-email/components';
export function EmailFooter(props: React.PropsWithChildren) {
return (
<Container className="mt-[24px]">
<Section className="px-4 text-[12px] leading-[20px] text-gray-300">
{props.children}
</Section>
</Container>
);
}