mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
16 lines
403 B
TypeScript
16 lines
403 B
TypeScript
import { Button } from "@react-email/button";
|
|
import { Html } from "@react-email/html";
|
|
import * as React from "react";
|
|
|
|
export default function HelloEmail() {
|
|
return (
|
|
<Html>
|
|
<Button
|
|
href="https://example.com"
|
|
style={{ background: "#000", color: "#fff" }}
|
|
>
|
|
Hello Charles
|
|
</Button>
|
|
</Html>
|
|
);
|
|
} |