JSFiddle - React, Tailwind, and code Playground

by Miguel Roman

HTML

<div id="container">
    <!-- This element's contents will be replaced with your component. -->
</div>

React

ReactDOM.render(
  <h1 name="World"></h1>,
  document.getElementById('container')
);