mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
14 lines
352 B
TypeScript
14 lines
352 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,
|
|
</Button>
|
|
</Html>
|
|
);
|
|
}
|