JSFiddle - React, Tailwind, and code Playground
by malovicn
HTML
<script src="https://npmcdn.com/[email protected]/dist/react-dom.js"></script>
<script src="https://npmcdn.com/[email protected]/dist/react.js"></script>
<div id='root'>
</div>
JavaScript
var Heading = React.createClass({
render: function () {
return {
<h1>Sample</h1>
}
}
});
React.render(<Heading />, document.getElementById('root'));