Format math text into MathML. Uses the ascii-math module, please note not all browsers support mathml: caniuse... mathml.
npm install react-math
http://cezary.github.io/react-math/
var React = require('react');
var MathML = require('react-math');
var Component = React.createClass({
render: function() {
return (
<MathML text='e^(i pi)=-1'/>
);
}
});
MIT