JSFiddle - React, Tailwind, and code Playground

by Andy Bulka

HTML

<h1>
hi there
</h1>

JavaScript

console.log('React test....')

var HelloComponent = React.createClass({  
    render: function() {
        return <div>Hello {this.props.name}</div>;
    }
});