JSFiddle - React, Tailwind, and code Playground
by Evan Sharp
HTML
<div id="root"></div>
<script src="https://unpkg.com/html-react-parser@latest/dist/html-react-parser.min.js"></script>
React
// https://github.com/remarkablemark/html-react-parser/issues/94
// https://www.owasp.org/index.php/Cross-site_Scripting_(XSS)
var html = '<iframe src=javascript:alert(window.location.href)></iframe>';
var element = HTMLReactParser(html);
console.log(element);
ReactDOM.render(element, document.getElementById('root'));