<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>dojo toolkit hello world example</title>
<script src="//ajax.googleapis.com/ajax/libs/dojo/1.10.4/dojo/dojo.js" data-dojo-config="async: true"></script>
</head>
<body>
<h1 id="selectorId">Hello</h1>
<br/><a target="_blank" href="http://www.code-sample.com/2016/10/dojo-toolkit-javascript-framework.html">For more examples..</a>
<script>
require(['dojo/dom', 'dojo/dom-construct'],
function(dom, dom_Construct) {
var node = dom.byId('selectorId');
dom_Construct.place('<span> Anil Singh!</span>', node);
});
</script>
</body>
</html>
// Code goes here
React.render(
<h1>Rendered from script.jsx!</h1>,
document.getElementById('example')
);
/* Styles go here */