JSFiddle - React, Tailwind, and code Playground

by Hemerson Vianna

HTML

<script src="https://unpkg.com/[email protected]/umd/react.development.js"></script>
<script src="https://unpkg.com/[email protected]/umd/react-dom.development.js"></script>
<div id="app"></div>

Babel + JSX

// Example 1
// import React from 'react';
// import ReactDOM from 'react-dom';

ReactDOM.render(
  <h1>Hello Worrrrrrld</h1>,
  document.getElementById('app')
);