Added redux based email overlay to parts order modal + built out barebones parts order email template.

This commit is contained in:
Patrick Fic
2020-02-20 19:01:12 -08:00
parent 1344198447
commit a51915c0ea
6 changed files with 125 additions and 40 deletions

View File

@@ -0,0 +1,23 @@
import React from "react";
export default function Header({ bodyshop }) {
return (
<table>
<tr>
<td>
<img alt='' src={bodyshop.logo_img_path} />
</td>
<td>
<div>
<strong>{`${bodyshop.shopname}`}</strong>
</div>
<div>{`${bodyshop.address1} ${bodyshop.address2} ${bodyshop.city} ${bodyshop.state} ${bodyshop.zip_post}`}</div>
<div>
<a href={`mailto:${bodyshop.email}`}>{bodyshop.email}</a>{" "}
{` | ${bodyshop.ph1}`}
</div>
</td>
</tr>
</table>
);
}