React component to render math using MathJax
npm install react-mathjaxreact-mathjax
React component to display math formulas.
```
$ npm i react-mathjax --save
`jsf(x) = \\int_{-\\infty}^\\infty
const MathJax = require('react-mathjax')
const tex =
\\hat f(\\xi)\\,e^{2 \\pi i \\xi x}
\\,d\\xi
module.exports = () => {
return (
This is an inline math formula:
And a block one:
);
}
``