JSFiddle - React, Tailwind, and code Playground

by Michael Danilov

HTML

<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Document</title>
  <script src="https://yastatic.net/react/17.0.2/react-with-dom.min.js"></script>
  <script src="https://yastatic.net/react/17.0.2/react-jsx-runtime.production.min.js"></script>
</head>
<body>
  <div id="root"></div>
</body>
</html>

JavaScript

ReactDOM.render(
  React.createElement('h1','Hello, world!'),
  document.getElementById('root')
);