when i run this code in google chrome it dose not work it is just a blank page
<!DOCTYPE html>
<html>
<head>
<title> "REACT EXAMPLE"></title>
<script src="react.js"></script>
<script src="react-dom.js"></script>
</head>
<body>
<div id="container"></div>
<script type="text/jsx">
ReactDOM.render(
<h1> "hello, React!"<h1>,
document.getElementById('container')
);
</script>
</body>
<html>