Files
newsletter-hackernews/components/emails/unsubscribe.tsx
2023-12-05 20:13:29 +01:00

14 lines
292 B
TypeScript

import Email from './template';
export default function UnsubscribeTemplate() {
return {
subject: 'Unsubscribe confirmation',
template: (
<Email
title="We're sad you're leaving :("
body={<>You have unsubscribed from the newsletter.</>}
/>
),
};
}