UNPKG

@faire/mjml-react

Version:

React component library to generate the HTML emails on the fly

12 lines (11 loc) 298 B
import React, { Component } from "react"; export class MjmlHtml extends Component { render() { const { tag = "mj-raw", html } = this.props; return React.createElement(tag, { dangerouslySetInnerHTML: { __html: html, }, }); } }