JSFiddle - React, Tailwind, and code Playground

by Josh Pullen

HTML

<div id="app"></div>

JavaScript

import { html, render } from "https://unpkg.com/htm/preact/standalone.module.js";

function App() {
	return html`
  	<h1>Math Movie Maker</h1>
    <div></div>
  `;
}

render(html`<${App} />`, document.querySelector("#app"));