import { deindent } from "../utils/strings";
export const previewTemplateSource = deindent`
import { Heading, Section, Row, Button, Link, Column } from "@react-email/components";
export const variablesSchema = v => v;
export function EmailTemplate() {
return <>
Header text
Body text content with some additional information.
A link
>;
}
`;
export const emptyEmailTheme = deindent`
import { Html, Tailwind, Body } from '@react-email/components';
export function EmailTheme({ children }: { children: React.ReactNode }) {
return (
{children}
);
}
`;
export const LightEmailTheme = `import { Html, Head, Tailwind, Body, Container, Link } from '@react-email/components';
import { ThemeProps } from "@stackframe/emails"
export function EmailTheme({ children, unsubscribeLink }: ThemeProps) {
return (