import React from 'react'; import PropTypes from 'prop-types'; export default class Preview extends React.Component { constructor(props) { super(props); } componentDidUpdate() { const MathJax = window.MathJax; if (MathJax != null) { MathJax.Hub.Queue(["Typeset", MathJax.Hub, this.element]); } } generateInnerHtml(html) { return {__html: html}; } render() { return (