31 lines
810 B
JavaScript
31 lines
810 B
JavaScript
import React from "react";
|
|
import { A, Box, Email, Item, Span } from "react-html-email";
|
|
|
|
export default function PartsOrderEmail({ data }) {
|
|
console.log("Data", data);
|
|
return (
|
|
<Email title='Hello World!'>
|
|
<Box>
|
|
<Item align='center'>
|
|
<Span fontSize={20}>
|
|
This is an example email made with:
|
|
<A href='https://github.com/chromakode/react-html-email'>
|
|
react-html-email
|
|
</A>
|
|
.
|
|
</Span>
|
|
</Item>
|
|
<Item align='center'>
|
|
<Span fontSize={20}>
|
|
This is an example email made with:
|
|
<A href='https://github.com/chromakode/react-html-email'>
|
|
react-html-email
|
|
</A>
|
|
.
|
|
</Span>
|
|
</Item>
|
|
</Box>
|
|
</Email>
|
|
);
|
|
}
|