10 lines
218 B
TypeScript
10 lines
218 B
TypeScript
import { Container, Section } from '@react-email/components';
|
|
|
|
export function EmailHeader(props: React.PropsWithChildren) {
|
|
return (
|
|
<Container>
|
|
<Section>{props.children}</Section>
|
|
</Container>
|
|
);
|
|
}
|