JSFiddle - React, Tailwind, and code Playground

by luodan

HTML

<script 
src="https://unpkg.com/foxview">
</script>

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

JavaScript

const {render,html} = FoxView
const message = "Hello,FoxView"

render(
	html`<div>${message}</div>`,
  document.getElementById('app')
)