JSFiddle - React, Tailwind, and code Playground

by Tsuneo Yoshioka

HTML

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

React

function App() {
	return (
  	<div>
      <div style={{width: "100px", height: "100px", 'background-color': "green"}}>
    	  aaa
      </div>
    </div>
  )

}
ReactDOM.render(<App/>, document.querySelector("#app"))