JSFiddle - React, Tailwind, and code Playground

by mcsf

HTML

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

React

function App() {
	return 'hi'
}

ReactDOM.render(<App />, document.getElementById('app'))