12 lines
275 B
TypeScript
12 lines
275 B
TypeScript
import { ContactTemplate } from '@konobangu/email/templates/contact';
|
|
|
|
const ExampleContactEmail = () => (
|
|
<ContactTemplate
|
|
name="Jane Smith"
|
|
email="jane.smith@example.com"
|
|
message="I'm interested in your services."
|
|
/>
|
|
);
|
|
|
|
export default ExampleContactEmail;
|