Files
outline/server/emails/templates/components/Body.tsx
Tom Moor 5c24f9e1d5 chore: Email + mailer refactor (#3342)
* Huge email refactor

* fix: One rename too many

* comments
2022-04-07 16:50:04 -07:00

20 lines
391 B
TypeScript

import { Table, TBody, TR, TD } from "oy-vey";
import * as React from "react";
import EmptySpace from "./EmptySpace";
const Body: React.FC = ({ children }) => (
<Table width="100%">
<TBody>
<TR>
<TD>
<EmptySpace height={10} />
{children}
<EmptySpace height={40} />
</TD>
</TR>
</TBody>
</Table>
);
export default Body;