JSFiddle - React, Tailwind, and code Playground

by vjeux

HTML

<script src="https://rawgithub.com/vjeux/react-xtags/master/x-react.js"></script>
<script src="https://rawgithub.com/vjeux/react-xtags/master/x-tag-components.js"></script>
<script src="http://fb.me/react-js-fiddle-integration.js"></script>

<!-- This HTML tag is going to be rendered with React -->
<x-hello name="World"></x-hello>

JavaScript 1.7

/** @jsx React.DOM */
var Hello = React.createClass({
  render: function() {
    return <div>{'Hello ' + this.props.name}</div>;
  }
});

xreact.register('x-hello', Hello);