1
0
mirror of https://github.com/Pomax/BezierInfo-2.git synced 2025-08-18 22:41:49 +02:00
This commit is contained in:
Pomax
2015-12-31 16:50:21 -08:00
parent ff9abb8bfc
commit 6ac1f146f7
2 changed files with 4 additions and 19 deletions

View File

@@ -1,16 +0,0 @@
var React = require("react");
var ReactDOM = require("react-dom");
var noop = require("../lib/noop");
var MathJax = (typeof window !== "undefined" ? window.MathJax : false);
// fallback will simply do nothing when typesetting.
if(!MathJax){MathJax={Hub:{Queue:noop}};}
var LaTeX = React.createClass({
render: function() {
return <p ref="latex">{this.props.children}</p>;
}
});
module.exports = LaTeX;