<html lang="en">
<title>Test React</title>
<script src= "../../unpkg.com/react%4016.12.0/umd/react.production.min.js"></script>
<script src= "../../unpkg.com/react-dom%4016.12.0/umd/react-dom.production.min.js"></script>
<script src="../../unpkg.com/babel-standalone%406.15.0/babel.min.js"></script>
<body>
<div id="id01">Hello World!</div>
<script type="text/babel">
ReactDOM.render(
<h1>Hello React!</h1>,
document.getElementById('id01'));
</script>
</body>
<!-- Mirrored from www.w3schools.com/whatis/tryit.asp?filename=trywhatis_react_jsx by HTTrack Website Copier/3.x [XR&CO'2014], Mon, 27 Jan 2020 02:56:10 GMT -->
</html>