import { Heading, Img, Section } from "react-email"; import { config } from "./config.ts"; export interface HeaderProps { issue: number | string; title: string; } export function Header({ issue, title }: HeaderProps) { return (
{config.brandName} Newsletter {issue} {title}
); }