-
-
Notifications
You must be signed in to change notification settings - Fork 367
Expand file tree
/
Copy pathindex.ts
More file actions
19 lines (18 loc) · 612 Bytes
/
index.ts
File metadata and controls
19 lines (18 loc) · 612 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
export { OtpEmail, renderOtpEmail } from "./OtpEmail";
export { TeamInviteEmail, renderTeamInviteEmail } from "./TeamInviteEmail";
export {
UsageWarningEmail,
renderUsageWarningEmail,
} from "./UsageWarningEmail";
export {
UsageLimitReachedEmail,
renderUsageLimitReachedEmail,
} from "./UsageLimitReachedEmail";
export {
DomainVerificationStatusEmail,
renderDomainVerificationStatusEmail,
} from "./DomainVerificationStatusEmail";
export * from "./components/EmailLayout";
export * from "./components/EmailHeader";
export * from "./components/EmailFooter";
export * from "./components/EmailButton";