@faire/mjml-react
Version:
React component library to generate the HTML emails on the fly
12 lines (11 loc) • 331 B
TypeScript
import React from "react";
export interface IMjmlPreviewProps {
className?: string;
cssClass?: string;
mjmlClass?: string;
children?: React.ReactNode;
dangerouslySetInnerHTML?: {
__html: string;
};
}
export declare function MjmlPreview({ children, ...props }: IMjmlPreviewProps): React.JSX.Element;