JSFiddle - React, Tailwind, and code Playground
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"))