27 lines
658 B
JavaScript
27 lines
658 B
JavaScript
import * as React from "react";
|
|
|
|
export const EmailTemplate = ({
|
|
firstName = "",
|
|
lastName = "",
|
|
emailAddress = "",
|
|
phoneNumber = "",
|
|
companyName = "",
|
|
websiteUrl = "",
|
|
annualRevenue = "",
|
|
learnFrom = "",
|
|
additionalInfo = "",
|
|
}) => (
|
|
<div>
|
|
<h3>
|
|
Name: {firstName} {lastName}
|
|
</h3>
|
|
<h3>Email: {emailAddress}</h3>
|
|
<h3>Phone: {phoneNumber}</h3>
|
|
<h3>Company: {companyName}</h3>
|
|
<h3>Website: {websiteUrl}</h3>
|
|
<h3>Annual Revenue: {annualRevenue}</h3>
|
|
<h3>Learn From: {learnFrom}</h3>
|
|
<h3>Additional Info: {additionalInfo}</h3>
|
|
</div>
|
|
);
|