Put a description here
npm install simple-react-mathjaxsimple-react-mathjax provides React component to render MathML, TeX or ASCIImath formulas.
simple-react-mathjax as a dependency:```
npm install simple-react-mathjax
`
`
Import the package and Wrap your components with Mathjax.
`js
import React, {Component} from 'react'
import MathJax from 'simple-react-mathjax'
class Demo extends Component {
render() {
return $sec \\theta / cosec \\theta$
}
}
``