JSFiddle - React, Tailwind, and code Playground

by Josh Pullen

JavaScript

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

function Component() {
	return html`<button>Component :)</button>`;
}

function App() {
	return html`
  	<div>Hello, world!</div>
  	<details>
      <summary>Details</summary>
      Something <${Component} /> enough to escape casual notice.
    </details>
  `;
}

render(html`<${App} />`, document.body);